1
2
3
4
5
6
|
mymax=0
for i in range(int(input())):
s=input()
cnt=s.count('for')+s.count('while')
mymax=max(cnt,mymax)
print(mymax)
|
cs |
반응형
'python-algorithm' 카테고리의 다른 글
leetcode 2221. Find Triangular Sum of an Array (0) | 2022.04.25 |
---|---|
백준 9012 괄호 (0) | 2022.04.22 |
백준 25024 시간과 날짜 (0) | 2022.04.21 |
leetcode 345. Reverse Vowels of a String (0) | 2022.04.21 |
leetcode 504. Base 7 (0) | 2022.04.18 |
댓글