반응형
Python : 영어 끝말잇기 (프로그래머스)
문제 - https://programmers.co.kr/learn/courses/30/lessons/12981?language=python3
def solution(n, words):
checks_word = []
answer=[0,0]
checks_word.append(words[0])
for i in range(1, len(words)):
if words[i] not in checks_word and words[i-1][-1] == words[i][0]:
checks_word.append(words[i])
else:
answer[0] = (i % n) + 1
answer[1] = (i // n) + 1
break
return answer
ans = []
words=["tank", "kick", "know", "wheel", "land", "dream", "mother", "robot", "tank"]
n=3
ans = solution(n, words)
print(ans)
실행 결과

반응형
'프로그래밍 > 파이썬(Python)' 카테고리의 다른 글
[Python] 백준1260 (DFS와 BFS) - 파이썬 문제 풀이 (0) | 2023.03.24 |
---|---|
[Python] 파이썬 데이터 입력 함수 및 방법 (input().split(), map()) (0) | 2023.03.21 |
[Python]파이썬 - 문제집(백준 1766) #위상정렬/힙 (0) | 2023.03.02 |
[Python]파이썬 - 계단오르기 (DP: 메모이제이션 방식) (0) | 2023.02.16 |