Skip to content

Commit a577f83

Browse files
committed
Refactor directory structures
1 parent 709be16 commit a577f83

File tree

28 files changed

+8
-0
lines changed

28 files changed

+8
-0
lines changed

sandbox.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
dance = []
2+
M = 3
3+
for _ in range(M):
4+
k, *x = map(int, input().split())
5+
dance.append(set(x))
6+
7+
print(dance)
8+
print(k)

0 commit comments

Comments
 (0)