일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- docker
- 오블완
- Multi-Resolution Networks for Semantic Segmentation in Whole Slide Images
- 프로그래머스
- Decision Boundary
- 백신후원
- IVI
- 코크리
- vscode
- CellPin
- docker exec
- AIFFEL
- Pull Request
- airflow
- ssh
- 티스토리챌린지
- logistic regression
- HookNet
- 기초확률론
- 도커
- numpy
- Jupyter notebook
- 사회조사분석사2급
- WSSS
- cs231n
- GIT
- docker attach
- cocre
- aiffel exploration
- 히비스서커스
Archives
- Today
- Total
목록위장 (1)
히비스서커스의 블로그
[Programmers] 위장
프로그래머스 코딩테스트 문제 중 해시를 이용해야하는 문제 위장에 대해 파이썬으로 해결한 풀이와 해설입니다. 문제링크 https://programmers.co.kr/learn/courses/30/lessons/42578 코딩테스트 연습 - 위장 programmers.co.kr solution def solution(clothes): hash = dict() for i, cloth in enumerate(clothes): if cloth[1] in hash: hash[cloth[1]] += 1 else: hash[cloth[1]] = 2 answer = 1 for j, value in enumerate(hash.values()): answer *= value return answer-1 해설 저는 크게 2파..
Theory/Algorithm
2021. 9. 2. 00:08