-Code
def solution(n, words):
arr = [words[0]]
for i in range(1, len(words)):
if words[i - 1][-1] != words[i][0] or words[i] in arr:
return [i % n + 1, i // n + 1]
arr.append(words[i])
return [0, 0]
'Beakjoon&프로그래머스 > 파이썬' 카테고리의 다른 글
[백준/파이썬] 17829번 222-풀링 (0) | 2022.05.18 |
---|---|
[백준/파이썬] 18429번 두 스티커 (0) | 2022.05.18 |
[프로그래머스/파이썬] 피보나치 수 (0) | 2022.05.17 |
[프로그래머스/파이썬] 올바른 괄호 (0) | 2022.05.17 |
[프로그래머스/파이썬] 괄호 회전하기 (0) | 2022.05.17 |