https://school.programmers.co.kr/learn/courses/30/lessons/142086
def solution(s):
result=[]
test = ""
for index,i in enumerate(s):
if test.find(i) == -1:
result.append(test.find(i))
else:
result.append(index-test.rfind(i))
test+=i
return result
'코딩테스트 > 프로그래머스' 카테고리의 다른 글
[프로그래머스/PYTHON] 명예의 전당 (1) (0) | 2024.05.29 |
---|---|
[프로그래머스/PYTHON] 문자열 나누기 (0) | 2024.05.27 |
[프로그래머스/PYTHON] 크기가 작은 부분 문자열 (0) | 2024.05.27 |
[프로그래머스/PYTHON] 2023 KAKAO BLIND RECRUITMENT 개인정보 수집 유효기간 (0) | 2024.05.27 |
[프로그래머스/PYTHON] 둘만의 암호 (0) | 2024.05.27 |