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 |
Tags
- apt clean
- Leetcode 121
- 걸쳐서 그림 넣기
- vi/vim commands
- Resolution Changing
- LaTeX figure
- latex 첨자
- 프로그래머스 실패율
- without nohup.out
- python3
- tensorflow model load
- url reference
- vim set noshowmatch
- 프로그래머스 구명보트
- Climbing Stairs
- gnuplot csv
- git commit message
- Leetcode 70
- vim 치환
- vim 찾아 바꾸기
- Python Imaging Library
- csv x range
- 프로그래머스
- linux prompt color
- linux bash
- vim 괄호 비활성화
- apt autoremove
- VirtualBox
- 프로그래머스 체육복
- vi/vim 명령어
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