반응형
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
- 비용함수
- Unsupervised learning
- CPP
- 추천 시스템
- SVM
- SGD
- 인공지능
- CNN
- cs231n
- OpenGL
- 그래픽스
- 컴퓨터 비전
- 컴퓨터 그래픽스
- Computer Vision
- Vision
- C++
- petal to metal
- logistic regression
- neural network
- 딥러닝
- 로지스틱 회귀
- recommender system
- Kaggle
- 파이썬
- Support Vector Machine
- 머신러닝
- 신경망
- pre-trained
- Regularization
- 백준
Archives
- Today
- Total
목록Python (1)
kwan's note
백준 - 14889번: 스타트와 링크 파이썬
www.acmicpc.net/problem/14889 14889번: 스타트와 링크 예제 2의 경우에 (1, 3, 6), (2, 4, 5)로 팀을 나누면 되고, 예제 3의 경우에는 (1, 2, 4, 5), (3, 6, 7, 8)로 팀을 나누면 된다. www.acmicpc.net 난이도 실버3: 직전에 올렸던 permutation과 combination을 구현해서 작성한 코드이다. 실질적으로는 combination만 사용하였다. def permutation(arr, r): used = [0]*len(arr) per2return=[] def generate(item, used): if len(item) == r: per2return.append(item.copy()) return # 3. for i in ra..
Algorithm/python
2021. 4. 26. 00:04