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
- python3
- List
- index
- list.sorted()
- zip()
- set to list
- list.pop(0)
- List 초기화
- Algorithm
- 피보나치 수
- string
- Python 나머지
- homebrew-core is a shallow clone.
- COUNT
- Split
- cask
- RecursionError
- List to String
- 프로그래머스
- sting position
- sort()
- Boto3
- Modified Date
- Python
- Python 몫
- list to set
- Unknown command: cask
- permutations
- 알고리즘
- 알고리즘 풀이
Archives
- Today
- Total
목록python3 (9)
데이터와 코드로 세상을 바라봅니다.
[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