문 제
알파벳 소문자로 이루어진 N개의 단어가 들어오면 아래와 같은 조건에 따라 정렬하는 프로그램을 작성하시오.
- 길이가 짧은 것부터
길이가 같으면 사전 순으로
단, 중복된 단어는 하나만 남기고 제거해야 한다.
입 력
첫째 줄에 단어의 개수 N이 주어진다. (1 ≤ N ≤ 20,000) 둘째 줄부터 N개의 줄에 걸쳐 알파벳 소문자로 이루어진 단어가 한 줄에 하나씩 주어진다. 주어지는 문자열의 길이는 50을 넘지 않는다.
13
but
i
wont
hesitate
no
more
no
more
it
cannot
wait
im
yours
출 력
i
im
it
no
but
more
wait
wont
yours
cannot
hesitate
코 드
using System;
using static System.Console;
using System.Linq;
using System.Collections.Generic;
namespace Algorithm
{
class Program
{
static void Main(string[] args)
{
int input = int.Parse(ReadLine());
List<string> wordList = new List<string>(256000000);
for (int i = 0; i < input; i++)
{
string word = ReadLine();
wordList.Add(word.ToLower()); // 소문자로 변환
}
wordList = wordList.Distinct().ToList(); // 리스트에서 중복값이 제거
wordList.Sort(); // 리스트 정렬
wordList = wordList.OrderBy(x => x.Length).ToList(); // 길이로 정렬하고, 오름차순으로 정렬
foreach (string word in wordList)
WriteLine(word);
}
}
}
비교코드 - 1
공 부
1. Linq
- OrderBy(n => n) : 기본 값이 ascending(오름차순) 이다.
- Distinct() : 중복된 데이터를 삭제한다.