문제
programmers.co.kr/learn/courses/30/lessons/12981
처음 작성한 코드
def solution(n, words):
for i in range(1, len(words)):
if words[i] in words[:i] or words[i-1][-1] != words[i][0]:
th, who = divmod(i,n)
return [who+1, th+1]
else:
return [0,0]
깨달은 점
- for-else문 좋다.
'Programmers' 카테고리의 다른 글
[프로그래머스] 폰켓몬 (0) | 2021.01.30 |
---|---|
[프로그래머스] 소수 만들기 (0) | 2021.01.28 |
[프로그래머스] 순위 검색 (0) | 2021.01.27 |
[프로그래머스] 신규 아이디 추천 (0) | 2021.01.27 |
[프로그래머스] 메뉴 리뉴얼 (0) | 2021.01.25 |