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 | 31 |
Tags
- Algorithm
- RecursionError
- 프로그래머스
- cask
- permutations
- Modified Date
- List 초기화
- index
- zip()
- List
- Python
- list.pop(0)
- Boto3
- List to String
- sting position
- list to set
- 피보나치 수
- Python 나머지
- set to list
- 알고리즘
- string
- COUNT
- Unknown command: cask
- python3
- 알고리즘 풀이
- Split
- list.sorted()
- Python 몫
- sort()
- homebrew-core is a shallow clone.
Archives
- Today
- Total
목록find (1)
데이터와 코드로 세상을 바라봅니다.
[Python3] 2018 KAKAO BLIND RECRUITMENT[3차] - 방금 그 곡
def paly_time(start, end) : start_time = start.split(':') end_time = end.split(':') result = (int(end_time[0])-int(start_time[0]))*60 + (int(end_time[1])-int(start_time[1])) return result def replace(music) : music = music.replace('C#','c').replace('D#','d').replace('E#','e').replace('F#','f').replace('G#','g').replace('A#','a') return music def solution(m, musicinfos): answer = "(None)" m = rep..
Code/Python
2021. 3. 16. 10:38