반응형
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 |
Tags
- 머신러닝
- Kaggle
- petal to metal
- 컴퓨터 그래픽스
- 비용함수
- CPP
- Vision
- 컴퓨터 비전
- Support Vector Machine
- cs231n
- 그래픽스
- Regularization
- Computer Vision
- 추천 시스템
- C++
- neural network
- SVM
- logistic regression
- 인공지능
- recommender system
- 파이썬
- SGD
- 백준
- pre-trained
- 로지스틱 회귀
- 신경망
- CNN
- OpenGL
- 딥러닝
- Unsupervised learning
Archives
- Today
- Total
목록Python (1)
kwan's note
![](http://i1.daumcdn.net/thumb/C150x150.fwebp.q85/?fname=https://blog.kakaocdn.net/dn/USuYU/btq2Hw37tW2/0WcCSwdgIL9po9fln4FADK/img.png)
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