File tree 1 file changed +16
-2
lines changed
1 file changed +16
-2
lines changed Original file line number Diff line number Diff line change 49
49
- [ Merge Sort In Place Algorithm] ( #merge-sort-in-place-algorithm )
50
50
- [ Find Median Values (With Merge Sort Algorithm)] ( #find-median-values-with-merge-sort-algorithm )
51
51
- [ Quick Sort] ( #quick-sort )
52
- - [ Math & Stats] ( #math--stats )
52
+ - [ Mathematics & Stats You should know] ( #mathematics--stats-you-should-know )
53
+ - [ How many zeros in 1 Billion] ( #how-many-zeros-in-1-billion )
54
+ - [ How many zeros in 1 Million] ( #how-many-zeros-in-1-million )
53
55
- [ Integer Division Without Using \* or /] ( #integer-division-without-using--or- )
54
56
- [ JavaScript Fundamentals] ( #javascript-fundamentals )
55
57
- [ Array Sort] ( #array-sort )
@@ -622,7 +624,19 @@ When Browser's are not using Merge sort they most of the time use Quick sort var
622
624
- [ quick sort in-place] ( src/algorithms/sorting/quick-sort/quick-sort-inplace.mjs )
623
625
- [ quick sort ] ( src/algorithms/sorting/quick-sort/quick-sort.mjs )
624
626
625
- ## Math & Stats
627
+ ## Mathematics & Stats You should know
628
+
629
+ ### How many zeros in 1 Billion
630
+
631
+ Answer: 9
632
+
633
+ 1,000,000,000 = 1 Billion
634
+
635
+ ### How many zeros in 1 Million
636
+
637
+ Answer: 6
638
+
639
+ 1,000,000 = 1 Million
626
640
627
641
### Integer Division Without Using \* or /
628
642
You can’t perform that action at this time.
0 commit comments