Skip to content

Commit 31658dd

Browse files
committed
Update README.md
1 parent 7b53146 commit 31658dd

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -113,9 +113,11 @@
113113
| 95(문제 7) | 추석 트래픽 | ★★★ | 부록 B. 카카오 공채 문제 풀이 | [7.py](appendix-B/7.py) |
114114

115115
## 기타 코드
116+
- 4장 [표준편차 계산 속도 비교](miscellaneous/4-performance.py)
116117
- 11장 [생일 문제](miscellaneous/11-birthday.py)
117118
- 12장 [그래프 순회](miscellaneous/12-graph-traversals.py)
118119
- 14장 [트리 순회](miscellaneous/14-tree-traversals.py)
120+
- 15장 [이진 힙](miscellaneous/15-binary-heap.py)
119121
- 17장 [버블 정렬](miscellaneous/17-bubble-sort.py)
120122
- 17장 [퀵 정렬](miscellaneous/17-quick-sort.py)
121123
- 21장 [분할 가능 배낭 문제](miscellaneous/21-fractional-knapsack.py)

miscellaneous/4-performance.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import numpy as np
44

55

6-
# 표준 편차 계산
6+
# 표준편차 계산
77
def standard_deviation(lst):
88
m = sum(lst) / len(lst)
99
variance = sum([(value - m) ** 2 for value in lst])

0 commit comments

Comments
 (0)