[프로그래머스] 영어 끝말잇기 (파이썬)
728x90
반응형
dictionary 사용
def solution(n, words):
answer = []
dic={}
prev=words[0]
dic[prev]=0
for i,w in enumerate(words):
if i==0: continue
if w[0]!=prev[-1] or w in dic:
return [i%n+1,i//n+1]
else:
prev=w
dic[w]=i
return [0,0]
728x90
반응형
'프로그래머스' 카테고리의 다른 글
[프로그래머스] 1차 캐시 (파이썬, javascript) (0) | 2020.09.21 |
---|---|
[프로그래머스] 땅따먹기 (파이썬, javascript ) (0) | 2020.09.18 |
[프로그래머스] h-index (파이썬, javascript) (0) | 2020.09.16 |
[프로그래머스] 짝지어 제거하기 (파이썬, javascript) (0) | 2020.09.16 |
프로그래머스 순위 (파이썬, set) (0) | 2020.09.11 |
TAGS.