resultArr = []
finalArr = []
for _ in range(10):
incomeInt = int(input()) % 42
resultArr.append(incomeInt)
# 그냥 함수 1줄이면 됩니다.
# 순서 있으면 list(dict.fromkeys(array)) 없으면 list(set(array))
# finalArr = list(dict.fromkeys(resultArr))
for x in resultArr:
if x not in finalArr:
finalArr.append(x)
print(len(finalArr))
주석에도 적었는데 그냥 함수 1줄이면 됩니다.(for문을 돌리지 마세요)
저는 인터넷을 안 찾아봤을 경우를 가정한 것입니다.(솔직히 이런 경우는 없지만...)
'알고리즘 > 배열(array)' 카테고리의 다른 글
백준 10811 python (0) | 2023.06.13 |
---|---|
python snake game (20230612 coding test) (0) | 2023.06.12 |
백준 5597 python (0) | 2023.06.11 |
백준 10813 python (0) | 2023.06.10 |
백준 10810 python (0) | 2023.06.09 |