Notice
Recent Posts
Recent Comments
Link
250x250
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 백준
- BAEKJOON
- 분할정복
- 파이썬
- C++
- cos pro
- 동적계획법
- android
- cos
- DFS와BFS
- Vue
- DFS
- issue
- 코딩테스트
- 개발
- cos pro 1급
- 알고리즘
- 안드로이드
- AndroidStudio
- 안드로이드스튜디오
- DART
- django
- vuejs
- 코드품앗이
- 코테
- Algorithm
- Python
- 동적계획법과최단거리역추적
- codingtest
- Flutter
Archives
- Today
- Total
목록누가 당선 되나요 python (1)
Development Artist
[COS Pro 1급, Python] 1차 8번 : 누가 당선 되나요
문제 유형 한줄 수정 난이도 easy Note 1. 후보 번호 = idx Code # -*- coding: utf-8 -*- # UTF-8 encoding when using korean def solution(N, votes): vote_counter = [0 for i in range(N+1)] for i in votes: vote_counter[i] += 1 max_val = max(vote_counter) print(vote_counter) answer = [] for idx in range(1, N + 1): if vote_counter[idx] == max_val: answer.append(idx) return answer N1 = 5 votes1 = [1,5,4,3,2,5,2,5,5,4] r..
Algorithm/COS
2022. 2. 24. 21:54