짱해커가 되어보자

boj 1371 본문

프로그래밍_일반/백준

boj 1371

Spadework 2020. 2. 26. 09:33

* Solved 기준 브론즈2 단순 풀이

import sys

l = [0]*26
while True:
	n = sys.stdin.readline()
	if not(n): break
	for c in n:
		if(ord(c)!=10 and ord(c)!=32): l[ord(c)-97] += 1
for i in range(0,26):
	print(chr(i+97) if l[i]==max(l) else '', end='')

 

'프로그래밍_일반 > 백준' 카테고리의 다른 글

boj 13301  (0) 2020.02.27
boj 1408  (0) 2020.02.27
boj 1225  (0) 2020.02.26
boj 14697  (0) 2020.02.26
boj 10813  (0) 2020.02.26
Comments