컴공생의 다이어리
[프로그래머스] 영어 끝말잇기 - 파이썬(Python) 본문
[프로그래머스] 영어 끝말잇기 - 파이썬(Python)
def solution(n, words):
length = len(words)
for i in range(1, length):
if words[i - 1][-1] != words[i][0]:
return [i % n + 1, i // n + 1]
elif words[i] in words[:i]:
return [i % n + 1, i // n + 1]
elif len(words[i]) == 1:
return [i % n + 1, i // n + 1]
return [0, 0]
https://programmers.co.kr/learn/courses/30/lessons/12981
728x90
'Development > Algorithm & Coding Test' 카테고리의 다른 글
[프로그래머스] 문자열 압축 - 파이썬(Python) (0) | 2022.06.27 |
---|---|
[프로그래머스] 입국심사 - 파이썬(Python) (0) | 2022.06.26 |
[프로그래머스] 비밀지도 - 파이썬(Python) (0) | 2022.06.24 |
[프로그래머스] N으로 표현 - 파이썬(Python) (0) | 2022.06.21 |
[프로그래머스] 순위 - 파이썬(Python) (0) | 2022.06.20 |
Comments