fun main(){ val br = BufferedReader(InputStreamReader(System.`in`)) val n = br.readLine().toInt() val list = ArrayList() for(i in 0 until n){ list.add(br.readLine()) } val sList = list.distinct().sortedWith(compareBy({ it.length } , {it})) for(i in sList.indices){ println(sList[i]) }} list.distinct() = 중복 제거 list.sorted() = 정렬 (숫자 : 오름차순 , 문자 : abc,ㄱㄴㄷ 순서)li..