boj step 4 rework
This commit is contained in:
8
zeta_python/completed/10807.py
Normal file
8
zeta_python/completed/10807.py
Normal file
@@ -0,0 +1,8 @@
|
||||
N = int(input())
|
||||
L = list(map(int, input().split()))
|
||||
v = int(input())
|
||||
c = 0
|
||||
for x in L:
|
||||
if x == v:
|
||||
c += 1
|
||||
print(c)
|
||||
Reference in New Issue
Block a user