728x90
https://programmers.co.kr/learn/courses/30/lessons/12981
그냥 주어진 방법대로 구현함...
진짜 주먹구구식으로 구현만 한거라 크게 볼건 없을듯...?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
def solution(n, words):
answer = [0, 0]
word_map = {} # 사용했던적 있는 단어인지 판단용
temp = words[0][0]
round_num = 1 # 몇 번쨰 라운드인지
while 1:
for i in range(n):
if words[0] not in word_map:
if temp == words[0][0]:
temp = words[0][-1]
word_map[words.pop(0)] = 1
else:
result = [i + 1, round_num]
return result
else:
result = [i + 1, round_num]
return result
round_num += 1
if len(words) == 0:
break
return answer
|
cs |
728x90
'PS > 프로그래머스' 카테고리의 다른 글
[프로그래머스 LV 2 ] 행렬의 곱셈 파이썬/python (0) | 2021.06.07 |
---|---|
[프로그래머스 LV 2] N개의 최소공배수 파이썬/python (0) | 2021.06.07 |
[프로그래머스 LV 2] 괄호 회전하기 파이썬/python (0) | 2021.06.05 |
[프로그래머스 LV 2] 배달 파이썬/python (0) | 2021.06.05 |
[프로그래머스 LV 2] 순위 검색 파이썬/python (0) | 2021.06.04 |