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
- 기타 연주
- Visual Studio
- 채보
- C#
- C
- pandas
- C++
- VS Code
- error
- Linux
- YOLO
- pytorch
- label
- Python
- LIST
- 프로그래머스
- mysql
- Docker
- JSON
- pip
- SSH
- OpenCV
- ubuntu
- 오류
- windows forms
- 컨테이너
- Selenium
- paramiko
- Numpy
- 핑거스타일
Archives
- Today
- Total
목록Permutation (1)
기계는 거짓말하지 않는다
Python 순열 (Permutation) 구현
Python에서 재귀함수를 이용한 순열 (Permutation)이다. def swap(arr, i1, i2): temp = arr[i1] arr[i1] = arr[i2] arr[i2] = temp def permutation(arr, depth, n, r): count = 0 if depth == r: for i in arr: print(i, end="") print("") return 1 for i in range(depth, n): swap(arr, depth, i) count += permutation(arr, depth + 1, n, r) swap(arr, depth, i) return count arr = ["A", "B", "C", "D"] count = permutation(arr, 0, 4..
Python
2023. 4. 15. 15:39