짱해커가 되어보자

boj 2774 본문

프로그래밍_일반/백준

boj 2774

Spadework 2020. 2. 27. 08:21

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

for _ in range(int(input())):
	l = [0]*10
	for i in input(): l[ord(i)-48] = 1
	print(l.count(1))

 

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

boj 2804  (0) 2020.02.27
boj 2495  (0) 2020.02.27
boj 9076  (0) 2020.02.27
boj 13301  (0) 2020.02.27
boj 1408  (0) 2020.02.27
Comments