Skip to content

Fix Contribution #27

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
May 22, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,8 @@ if (std.mem.eql(u8, op, "category/algorithm-name"))
to test add:

```zig
# runall.zig
// runall.zig
try runTest(allocator, "category/algorithm-name");
```

**Note:** Do not change or modify the files (`build.zig` & `runall.zig`) without first suggesting it to the maintainers (open/issue proposal).
**Note:** Do not change or modify the files (`build.zig` & `runall.zig`) without first suggesting it to the maintainers (open/issue proposal).
5 changes: 5 additions & 0 deletions DIRECTORY.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@
* [Knapsack](https://github.com/TheAlgorithms/Zig/blob/HEAD/dynamicProgramming/knapsack.zig)
* [Longestincreasingsubsequence](https://github.com/TheAlgorithms/Zig/blob/HEAD/dynamicProgramming/longestIncreasingSubsequence.zig)

## Machine Learning
* [K Means Clustering](https://github.com/TheAlgorithms/Zig/blob/HEAD/machine_learning/k_means_clustering.zig)

## Math
* [Ceil](https://github.com/TheAlgorithms/Zig/blob/HEAD/math/ceil.zig)
* [Chineseremaindertheorem](https://github.com/TheAlgorithms/Zig/blob/HEAD/math/chineseRemainderTheorem.zig)
Expand All @@ -25,6 +28,8 @@
* [Gcd](https://github.com/TheAlgorithms/Zig/blob/HEAD/math/gcd.zig)
* [Primes](https://github.com/TheAlgorithms/Zig/blob/HEAD/math/primes.zig)

## [Runall](https://github.com/TheAlgorithms/Zig/blob/HEAD//runall.zig)

## Search
* [Binarysearchtree](https://github.com/TheAlgorithms/Zig/blob/HEAD/search/binarySearchTree.zig)
* [Redblacktrees](https://github.com/TheAlgorithms/Zig/blob/HEAD/search/redBlackTrees.zig)
Expand Down