From 5ec99478fd340395f92f736bd88df7451bd05ad4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matheus=20C=2E=20Fran=C3=A7a?= Date: Thu, 22 May 2025 09:50:38 -0300 Subject: [PATCH 1/2] Update CONTRIBUTING.md --- CONTRIBUTING.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 2b1e028..b62d5f3 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -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). \ No newline at end of file +**Note:** Do not change or modify the files (`build.zig` & `runall.zig`) without first suggesting it to the maintainers (open/issue proposal). From 76b7c540c50a9a4ccb5553d1c85fbdce81dbd80b Mon Sep 17 00:00:00 2001 From: kassane Date: Thu, 22 May 2025 12:50:48 +0000 Subject: [PATCH 2/2] Update DIRECTORY.md --- DIRECTORY.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/DIRECTORY.md b/DIRECTORY.md index d270a09..21d75bd 100644 --- a/DIRECTORY.md +++ b/DIRECTORY.md @@ -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) @@ -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)