일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- python
- 수학
- programmers
- Combinations
- Zip
- 자바
- 이분탐색
- 그리디
- BFS
- backjoon
- 정규식
- 백준
- Re
- KAKAO BLIND RECRUITMENT
- 파이썬
- Set
- lambda
- divmod
- heapq
- DateTime
- 위클리 챌린지
- 정렬
- 프로그래머스
- dfs
- 다익스트라
- java
- 카카오
- 재귀함수
- 동적 계획법
- 추석맞이 코딩챌린지
Archives
- Today
- Total
상상쓰
[프로그래머스] 신고 결과 받기 본문
https://programmers.co.kr/learn/courses/30/lessons/92334
작년에 풀었었는데 반가웠다.
set 을 사용하여 정지당한 유저를 구하고 그 유저를 신고한 인원을 차례로 확인하여 count[신고자] += 1 을 한다.
from collections import defaultdict
def solution(id_list, report, k):
answer = []
dic = defaultdict(set)
count = defaultdict(int)
for i in report:
x, y = i.split()
dic[y].add(x)
for i in dic.keys():
if len(dic[i]) >= k:
for j in dic[i]:
count[j] += 1
for i in id_list:
answer.append(count[i])
return answer
print(solution(['muzi', 'frodo', 'apeach', 'neo'], ['muzi frodo', 'apeach frodo', 'frodo neo', 'muzi neo', 'apeach muzi'], 2)) # [2, 1, 1, 0]
'Coding Test' 카테고리의 다른 글
[프로그래머스] 주차 요금 계산 (0) | 2022.02.12 |
---|---|
[프로그래머스] k진수에서 소수 개수 구하기 (0) | 2022.01.23 |
[백준] Fly me to the Alpha Centauri (2) | 2022.01.14 |
[백준] 동전 1 (0) | 2021.11.18 |
[백준] 1, 2, 3 더하기 4 (0) | 2021.11.12 |
Comments