Skip to content

Commit 991d8ce

Browse files
github-actionsgithub-actions
authored andcommitted
updating DIRECTORY.md
1 parent 0a4b7b3 commit 991d8ce

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

DIRECTORY.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,11 @@
1010
* [Editdistance](https://github.com/TheAlgorithms/Kotlin/blob/master/src/main/kotlin/dynamicProgramming/EditDistance.kt)
1111
* [Factorial](https://github.com/TheAlgorithms/Kotlin/blob/master/src/main/kotlin/dynamicProgramming/Factorial.kt)
1212
* [Isprime](https://github.com/TheAlgorithms/Kotlin/blob/master/src/main/kotlin/dynamicProgramming/isPrime.kt)
13+
* [Lcs](https://github.com/TheAlgorithms/Kotlin/blob/master/src/main/kotlin/dynamicProgramming/LCS.kt)
1314
* [Matrixchainmultiplication](https://github.com/TheAlgorithms/Kotlin/blob/master/src/main/kotlin/dynamicProgramming/MatrixChainMultiplication.kt)
1415
* [Rodcuttingproblem](https://github.com/TheAlgorithms/Kotlin/blob/master/src/main/kotlin/dynamicProgramming/RodCuttingProblem.kt)
16+
* [Unboundedknapsack](https://github.com/TheAlgorithms/Kotlin/blob/master/src/main/kotlin/dynamicProgramming/UnboundedKnapsack.kt)
17+
* [Weightedjobscheduling](https://github.com/TheAlgorithms/Kotlin/blob/master/src/main/kotlin/dynamicProgramming/WeightedJobScheduling.kt)
1518
* [Zerooneknapsackproblem](https://github.com/TheAlgorithms/Kotlin/blob/master/src/main/kotlin/dynamicProgramming/ZeroOneKnapsackProblem.kt)
1619
* Math
1720
* [Average](https://github.com/TheAlgorithms/Kotlin/blob/master/src/main/kotlin/math/Average.kt)
@@ -24,6 +27,7 @@
2427
* [Linearsearch](https://github.com/TheAlgorithms/Kotlin/blob/master/src/main/kotlin/search/LinearSearch.kt)
2528
* [Ternarysearch](https://github.com/TheAlgorithms/Kotlin/blob/master/src/main/kotlin/search/TernarySearch.kt)
2629
* Sort
30+
* [Bricksort](https://github.com/TheAlgorithms/Kotlin/blob/master/src/main/kotlin/sort/BrickSort.kt)
2731
* [Bubblesort](https://github.com/TheAlgorithms/Kotlin/blob/master/src/main/kotlin/sort/BubbleSort.kt)
2832
* [Heapsort](https://github.com/TheAlgorithms/Kotlin/blob/master/src/main/kotlin/sort/HeapSort.kt)
2933
* [Insertionsort](https://github.com/TheAlgorithms/Kotlin/blob/master/src/main/kotlin/sort/InsertionSort.kt)
@@ -38,8 +42,11 @@
3842
* [Editdistancetest](https://github.com/TheAlgorithms/Kotlin/blob/master/src/test/kotlin/dynamicProgramming/EditDistanceTest.kt)
3943
* [Factorialtest](https://github.com/TheAlgorithms/Kotlin/blob/master/src/test/kotlin/dynamicProgramming/FactorialTest.kt)
4044
* [Isprime](https://github.com/TheAlgorithms/Kotlin/blob/master/src/test/kotlin/dynamicProgramming/isPrime.kt)
45+
* [Lcstest](https://github.com/TheAlgorithms/Kotlin/blob/master/src/test/kotlin/dynamicProgramming/LCSTest.kt)
4146
* [Matrixchainmultiplicationtest](https://github.com/TheAlgorithms/Kotlin/blob/master/src/test/kotlin/dynamicProgramming/MatrixChainMultiplicationTest.kt)
4247
* [Rodcuttingproblemtest](https://github.com/TheAlgorithms/Kotlin/blob/master/src/test/kotlin/dynamicProgramming/RodCuttingProblemTest.kt)
48+
* [Unboundedknapsacktest](https://github.com/TheAlgorithms/Kotlin/blob/master/src/test/kotlin/dynamicProgramming/UnboundedKnapsackTest.kt)
49+
* [Weightedjobschedulingtest](https://github.com/TheAlgorithms/Kotlin/blob/master/src/test/kotlin/dynamicProgramming/WeightedJobSchedulingTest.kt)
4350
* [Zerooneknapsackproblemtest](https://github.com/TheAlgorithms/Kotlin/blob/master/src/test/kotlin/dynamicProgramming/ZeroOneKnapsackProblemTest.kt)
4451
* Math
4552
* [Averagetest](https://github.com/TheAlgorithms/Kotlin/blob/master/src/test/kotlin/math/AverageTest.kt)
@@ -52,6 +59,7 @@
5259
* [Linearsearchtest](https://github.com/TheAlgorithms/Kotlin/blob/master/src/test/kotlin/search/LinearSearchTest.kt)
5360
* [Ternarysearchtest](https://github.com/TheAlgorithms/Kotlin/blob/master/src/test/kotlin/search/TernarySearchTest.kt)
5461
* Sort
62+
* [Bricksorttest](https://github.com/TheAlgorithms/Kotlin/blob/master/src/test/kotlin/sort/BrickSortTest.kt)
5563
* [Bubblesorttest](https://github.com/TheAlgorithms/Kotlin/blob/master/src/test/kotlin/sort/BubbleSortTest.kt)
5664
* [Heapsorttest](https://github.com/TheAlgorithms/Kotlin/blob/master/src/test/kotlin/sort/HeapSortTest.kt)
5765
* [Insertionsorttest](https://github.com/TheAlgorithms/Kotlin/blob/master/src/test/kotlin/sort/InsertionSortTest.kt)

0 commit comments

Comments
 (0)