백준 21143번: Magic Trick #Python

ColorlessDia·2025년 11월 25일

algorithm/baekjoon

목록 보기
737/808
S = input()

if len(S) == len(set([s for s in S])):
    print(1)
else:
    print(0)

0개의 댓글