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
- latex 첨자
- vim set noshowmatch
- Resolution Changing
- linux bash
- apt autoremove
- Python Imaging Library
- 프로그래머스 실패율
- vi/vim commands
- VirtualBox
- 걸쳐서 그림 넣기
- url reference
- 프로그래머스 체육복
- vi/vim 명령어
- python3
- Climbing Stairs
- vim 치환
- Leetcode 70
- gnuplot csv
- 프로그래머스
- csv x range
- without nohup.out
- 프로그래머스 구명보트
- git commit message
- Leetcode 121
- vim 찾아 바꾸기
- apt clean
- LaTeX figure
- tensorflow model load
- vim 괄호 비활성화
- linux prompt color
Archives
- Today
- Total
목록프로그래머스 (2)
기억노트
[Programmers/Python3] 주식가격
Code def solution(prices): n = len(prices) answer = [] for i in range(n): sec = 0 for j in range(i+1, n): sec += 1 if prices[i] > prices[j]: break answer.append(sec) return answer Result 정확성 테스트 테스트 1 〉 통과 (0.01ms, 10.2MB) 테스트 2 〉 통과 (0.05ms, 10.2MB) 테스트 3 〉 통과 (0.97ms, 10.3MB) 테스트 4 〉 통과 (0.60ms, 10.3MB) 테스트 5 〉 통과 (0.85ms, 10.3MB) 테스트 6 〉 통과 (0.02ms, 10.3MB) 테스트 7 〉 통과 (0.37ms, 10.3MB) 테스트 8 〉..
Coding Test 준비/Programmers
2022. 1. 11. 19:47