아나그램이란? 같은 문자로 이루어진 문자열이지만, 문자들의 정렬이 다른 경우 ( HelloWorld / WrlodHolle) 소스코드 public class Anagram_Source : MonoBehaviour { void Start() { string inputstr = "HelloWorld"; string inputstr2 = "WrlodHolle"; Debug.Log(AnagramChecker(inputstr, inputstr2)); } bool AnagramChecker(string input1, string input2) { //공백 제거 input1 = input1.Replace(" ", ""); input2 = input2.Replace(" ", ""); //1차적으로 길이로 판단 if(i..