Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- vim set noshowmatch
- 프로그래머스 체육복
- apt autoremove
- gnuplot csv
- linux bash
- vi/vim commands
- Climbing Stairs
- vim 치환
- tensorflow model load
- Leetcode 121
- latex 첨자
- Resolution Changing
- url reference
- git commit message
- without nohup.out
- 프로그래머스
- 프로그래머스 구명보트
- Leetcode 70
- vi/vim 명령어
- LaTeX figure
- python3
- linux prompt color
- VirtualBox
- vim 찾아 바꾸기
- apt clean
- vim 괄호 비활성화
- 걸쳐서 그림 넣기
- 프로그래머스 실패율
- csv x range
- Python Imaging Library
Archives
- Today
- Total
목록프로그래머스 체육복 (1)
기억노트
[Programmers/Python3] 체육복
Code from collections import Counter def solution(n, lost, reserve): arr = [1] * (n+2) for x in reserve: arr[x] += 1 for x in lost: arr[x] -= 1 for i in range(len(arr)): if arr[i] == 0: if arr[i-1] == 2: arr[i] += 1 arr[i-1] -= 1 elif arr[i+1] ==2: arr[i] += 1 arr[i+1] -= 1 arr.pop(0) arr.pop() return len(arr) - Counter(arr)[0] Result 정확성 테스트 테스트 1 〉 통과 (0.02ms, 10.3MB) 테스트 2 〉 통과 (0.04ms, 10.2M..
Coding Test 준비/Programmers
2022. 1. 12. 20:11