Skip to content

Commit 4310a01

Browse files
committed
0011.py
1 parent 86c4833 commit 4310a01

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

py-task/0011.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
num = list()
2+
for i in range(10):
3+
n = int(input())
4+
if(not(n%42 in num)):
5+
num.append(n%42)
6+
print(len(num))
7+

0 commit comments

Comments
 (0)