restructure zeta/** to storage/zeta/**
This commit is contained in:
6
storage/zeta/py/completed/1181.py
Normal file
6
storage/zeta/py/completed/1181.py
Normal file
@@ -0,0 +1,6 @@
|
||||
N = int(input())
|
||||
S = [input() for i in range(N)]
|
||||
S = list(set(S))
|
||||
S.sort(key=lambda v: (len(v), v))
|
||||
for s in S:
|
||||
print(s)
|
||||
Reference in New Issue
Block a user