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 |
Tags
- ai 뚝뚝 끊김
- splinemeshcomponent scale
- register component
- staticmesh mobility
- redirection crash
- 13iew
- ai 주춤거림
- ai jitter
- Unreal Engine 5
- 리디렉터 크래쉬
- UE
- UE4
- redirector crash
- 언리얼
- Unreal Engine Error
- 리디렉션 크래쉬
- UE5
- ue4 Crash
- unreal engine redirection crash
- unity
- Random Map Generator
- Unreal Engine 4
- LittleNightMare
- UnrealEngine
- ue4 error
- unreal ai lag
- 랜덤 맵 생성
- unreal engine
- deltaTime
- Ai
Archives
- Today
- Total
Class GameDev* SheepAdult
[Python] 2022 KAKAO BLIND RECRUITMENT 신고 결과 받기 본문
def solution(id_list, report, k):
answer = []
result = {x: 0 for x in id_list}
dic = {x: [] for x in id_list}
for r in report:
r = r.split()
if r[0] not in dic[r[1]]:
dic[r[1]].append(r[0])
for r in dic:
if len(dic[r]) >= k:
for i in dic[r]:
result[i] += 1
for i in dic:
answer.append(result[i])
return answer
'Algorithm' 카테고리의 다른 글
[C++] vector에서 중복 제거 (0) | 2022.08.31 |
---|