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
- list.sorted()
- sort()
- list to set
- zip()
- List
- List to String
- Python 몫
- string
- Modified Date
- python3
- Algorithm
- 피보나치 수
- cask
- Boto3
- COUNT
- 알고리즘 풀이
- Split
- list.pop(0)
- Unknown command: cask
- Python
- RecursionError
- 알고리즘
- sting position
- index
- Python 나머지
- permutations
- set to list
- homebrew-core is a shallow clone.
- 프로그래머스
- List 초기화
Archives
- Today
- Total
목록알고리즘 풀이 (1)
데이터와 코드로 세상을 바라봅니다.
[Python 3] - Dictionary, Key, Value, Max, Min, Sort, Desc
def solution(answers): answer = [] answer1 = [1, 2, 3, 4, 5] answer2 = [2, 1, 2, 3, 2, 4, 2, 5, 2, 1, 2, 3, 2, 4, 2, 5] answer3 = [3, 3, 1, 1, 2, 2, 4, 4, 5, 5, 3, 3, 1, 1, 2, 2, 4, 4, 5, 5] data = {'1': 0, '2': 0, '3': 0} for i in range(0,len(answers)): if answer1[i%len(answer1)] == answers[i] : data['1'] += 1 if answer2[i%len(answer2)] == answers[i] : data['2'] += 1 if answer3[i%len(answer3)] ..
Code/Python
2020. 11. 4. 14:41