def solution(board, moves): answer = 0 bag = [] for k in moves:#moves원소안에 있는걸로 i = k-1 #세로 for j in range(len(board)): #가로 # print(i,j) if board[j][i] == 0: #0일 땐 넘김 continue else: #0이 아닐때 bag.append(board[j][i]) board[j][i] = 0 #0으로 대체해주기 if len(bag) >= 2: b1 = bag.pop(-1) #맨끝 b2 = bag.pop(-1) #두번째 끝 if b1 == b2: #앞꺼와 같으면 없애고 카운트 answer += 2 else: bag.append(b2) #아니면 두번째 끝꺼부터 다시 넣어줌 bag.append(..
s1 = [1, 2, 3, 4, 5] s2 = [2, 1, 2, 3, 2, 4, 2, 5] s3 = [3, 3, 1, 1, 2, 2, 4, 4, 5, 5] def solution(answers): n1, n2, n3, c1, c2, c3 = 0, 0, 0, 0, 0, 0 for i in range(len(answers)): if c1 == len(s1): c1 = 0 if c2 == len(s2): c2 = 0 if c3 == len(s3): c3 = 0 if s1[c1] == answers[i]: n1 += 1 if s2[c2] == answers[i]: n2 += 1 if s3[c3] == answers[i]: n3 += 1 c1 += 1 c2 += 1 c3 += 1 answer = [] if max..
- Total
- Today
- Yesterday
- 트리
- 세션 스토리지
- N과M
- Python
- 위클리챌린지2주차
- splide
- vue.js
- 파이썬
- SQL
- DOM
- 알고리즘
- 싸피
- django
- 프로그래머스
- AWS
- commit되돌리기
- vue
- SSAFY
- Java
- javascript
- git
- 안드로이드스튜디오
- 자바
- SWEA
- SSAFY퇴소
- 비동기패턴
- Pyhton
- 배포
- 백준
- 독학
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |