[BOJ C#] 1181 단어 정렬
case #1 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace _1181 { class App { //생성자 public App() { string[] arr = { "but", "i", "wont", "hesitate", "no", "more", "no", "it", "cannot", "wait", "im", "your" }; //여기부터 작성하세요 for(int i = 1; i < arr.Length; i++) { var strs = from str in arr where str.Length==i orderby str asce..
2023. 1. 12.