set으로 중복체크.
import sys
input = sys.stdin.readline
while 1:
try:
N, M = map(int, input().split())
except:
break
ans = 0
for num in range(N,M+1):
cnt = set()
s_num = str(num)
for char in s_num:
cnt.add(char)
if len(s_num) == len(cnt):
ans += 1
print(ans)
'practivceAlgorithm > 백준' 카테고리의 다른 글
[백준][Python] 19542 전단지 돌리기 (0) | 2021.09.13 |
---|---|
[백준][Python] 21314 민겸수 (0) | 2021.09.13 |
[백준][Python] 2143 두 배열의 합 (0) | 2021.09.13 |
[백준][Python] 2138 전구와 스위치 (0) | 2021.09.13 |
[백준][Python] 1965 상자넣기 (0) | 2021.09.12 |