컴공생의 다이어리

[프로그래머스] 영어 끝말잇기 - 파이썬(Python) 본문

Development/Algorithm & Coding Test

[프로그래머스] 영어 끝말잇기 - 파이썬(Python)

컴공 K 2022. 6. 25. 00:01

[프로그래머스] 영어 끝말잇기 - 파이썬(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

 

코딩테스트 연습 - 영어 끝말잇기

3 ["tank", "kick", "know", "wheel", "land", "dream", "mother", "robot", "tank"] [3,3] 5 ["hello", "observe", "effect", "take", "either", "recognize", "encourage", "ensure", "establish", "hang", "gather", "refer", "reference", "estimate", "executive"] [0,0]

programmers.co.kr

 

728x90
Comments