Skip to content

Commit e70e603

Browse files
committed
math: fix median implementation
1 parent f55220e commit e70e603

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

math/median.jule

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
use "sort"
22

33
fn Median(mut slice: []int): f64 {
4-
slice = sort::QuickSort(slice)
4+
slice = sort::Quicksort(slice)
55
let l = len(slice)
66
match {
77
| l == 0:

0 commit comments

Comments
 (0)