https://school.programmers.co.kr/learn/courses/30/lessons/12981
1. 해결방법
return 값은 번호 = (i%n)+1, 차례 = (i//n)+1이다.
위 부분만 상각하면 될 것 같다. 번호와 차례를 해결하지 못해서 조금 헤맸던 문제이다.
2. 정답코드
def solution(n, words):
answer = []
word_list = []
word_list.append(words[0])
for i in range(1, len(words)):
if words[i - 1][-1] != words[i][0] or words[i] in word_list:
answer.append((i % n) + 1)
answer.append((i // n) + 1)
break
elif words[i - 1][-1] == words[i][0] or words[i] not in word_list:
word_list.append(words[i])
else:
return [0, 0]
return answer
'Algorithm > 프로그래머스' 카테고리의 다른 글
[프로그래머스] Lv.1 소수 찾기 (2) | 2022.09.26 |
---|---|
[프로그래머스] Lv.2 행렬 테두리 회전하기 (0) | 2022.09.20 |
[프로그래머스] Lv.2 멀쩡한 사각형 (2) | 2022.09.19 |
[프로그래머스] Lv.2 124 나라의 숫자 (0) | 2022.09.19 |
[프로그래머스] Lv.2 가장 큰 수 (0) | 2022.09.18 |