We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7b53146 commit 31658ddCopy full SHA for 31658dd
README.md
@@ -113,9 +113,11 @@
113
| 95(문제 7) | 추석 트래픽 | ★★★ | 부록 B. 카카오 공채 문제 풀이 | [7.py](appendix-B/7.py) |
114
115
## 기타 코드
116
+- 4장 [표준편차 계산 속도 비교](miscellaneous/4-performance.py)
117
- 11장 [생일 문제](miscellaneous/11-birthday.py)
118
- 12장 [그래프 순회](miscellaneous/12-graph-traversals.py)
119
- 14장 [트리 순회](miscellaneous/14-tree-traversals.py)
120
+- 15장 [이진 힙](miscellaneous/15-binary-heap.py)
121
- 17장 [버블 정렬](miscellaneous/17-bubble-sort.py)
122
- 17장 [퀵 정렬](miscellaneous/17-quick-sort.py)
123
- 21장 [분할 가능 배낭 문제](miscellaneous/21-fractional-knapsack.py)
miscellaneous/4-performance.py
@@ -3,7 +3,7 @@
3
import numpy as np
4
5
6
-# 표준 편차 계산
+# 표준편차 계산
7
def standard_deviation(lst):
8
m = sum(lst) / len(lst)
9
variance = sum([(value - m) ** 2 for value in lst])
0 commit comments