← Back to List

30684번: 모르고리즘 회장 정하기 ↗

Solutions

PyPy3
117 B | 117 chars
l = [input() for i in range(int(input()))]
s = []
for i in l:
  if len(i) == 3:
    s.append(i)
s.sort()

print(s[0])