Skip to content

Commit 0c50fc2

Browse files
authored
Fix Contribution (#27)
1 parent f97c143 commit 0c50fc2

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,8 +71,8 @@ if (std.mem.eql(u8, op, "category/algorithm-name"))
7171
to test add:
7272

7373
```zig
74-
# runall.zig
74+
// runall.zig
7575
try runTest(allocator, "category/algorithm-name");
7676
```
7777

78-
**Note:** Do not change or modify the files (`build.zig` & `runall.zig`) without first suggesting it to the maintainers (open/issue proposal).
78+
**Note:** Do not change or modify the files (`build.zig` & `runall.zig`) without first suggesting it to the maintainers (open/issue proposal).

DIRECTORY.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,9 @@
1616
* [Knapsack](https://github.com/TheAlgorithms/Zig/blob/HEAD/dynamicProgramming/knapsack.zig)
1717
* [Longestincreasingsubsequence](https://github.com/TheAlgorithms/Zig/blob/HEAD/dynamicProgramming/longestIncreasingSubsequence.zig)
1818

19+
## Machine Learning
20+
* [K Means Clustering](https://github.com/TheAlgorithms/Zig/blob/HEAD/machine_learning/k_means_clustering.zig)
21+
1922
## Math
2023
* [Ceil](https://github.com/TheAlgorithms/Zig/blob/HEAD/math/ceil.zig)
2124
* [Chineseremaindertheorem](https://github.com/TheAlgorithms/Zig/blob/HEAD/math/chineseRemainderTheorem.zig)
@@ -25,6 +28,8 @@
2528
* [Gcd](https://github.com/TheAlgorithms/Zig/blob/HEAD/math/gcd.zig)
2629
* [Primes](https://github.com/TheAlgorithms/Zig/blob/HEAD/math/primes.zig)
2730

31+
## [Runall](https://github.com/TheAlgorithms/Zig/blob/HEAD//runall.zig)
32+
2833
## Search
2934
* [Binarysearchtree](https://github.com/TheAlgorithms/Zig/blob/HEAD/search/binarySearchTree.zig)
3035
* [Redblacktrees](https://github.com/TheAlgorithms/Zig/blob/HEAD/search/redBlackTrees.zig)

0 commit comments

Comments
 (0)