using System; using System.Collections.Generic; using System.IO; using System.Linq; namespace Study11 { class App { //생성자 public App() { string[] arr = { "but", "i", "wont", "hesitate", "no", "more", "no", "it", "cannot", "wait", "im", "your" }; //여기부터 작성하세요 string[] distinctArr = arr.Distinct().ToArray(); //먼저 중복 제거한 배열을 만들었다 IOrderedEnumerable query = from word in distinctArr orderby word.Leng..