|
10 | 10 | * [Editdistance](https://github.com/TheAlgorithms/Kotlin/blob/master/src/main/kotlin/dynamicProgramming/EditDistance.kt) |
11 | 11 | * [Factorial](https://github.com/TheAlgorithms/Kotlin/blob/master/src/main/kotlin/dynamicProgramming/Factorial.kt) |
12 | 12 | * [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) |
13 | 14 | * [Matrixchainmultiplication](https://github.com/TheAlgorithms/Kotlin/blob/master/src/main/kotlin/dynamicProgramming/MatrixChainMultiplication.kt) |
14 | 15 | * [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) |
15 | 18 | * [Zerooneknapsackproblem](https://github.com/TheAlgorithms/Kotlin/blob/master/src/main/kotlin/dynamicProgramming/ZeroOneKnapsackProblem.kt) |
16 | 19 | * Math |
17 | 20 | * [Average](https://github.com/TheAlgorithms/Kotlin/blob/master/src/main/kotlin/math/Average.kt) |
|
24 | 27 | * [Linearsearch](https://github.com/TheAlgorithms/Kotlin/blob/master/src/main/kotlin/search/LinearSearch.kt) |
25 | 28 | * [Ternarysearch](https://github.com/TheAlgorithms/Kotlin/blob/master/src/main/kotlin/search/TernarySearch.kt) |
26 | 29 | * Sort |
| 30 | + * [Bricksort](https://github.com/TheAlgorithms/Kotlin/blob/master/src/main/kotlin/sort/BrickSort.kt) |
27 | 31 | * [Bubblesort](https://github.com/TheAlgorithms/Kotlin/blob/master/src/main/kotlin/sort/BubbleSort.kt) |
28 | 32 | * [Heapsort](https://github.com/TheAlgorithms/Kotlin/blob/master/src/main/kotlin/sort/HeapSort.kt) |
29 | 33 | * [Insertionsort](https://github.com/TheAlgorithms/Kotlin/blob/master/src/main/kotlin/sort/InsertionSort.kt) |
|
38 | 42 | * [Editdistancetest](https://github.com/TheAlgorithms/Kotlin/blob/master/src/test/kotlin/dynamicProgramming/EditDistanceTest.kt) |
39 | 43 | * [Factorialtest](https://github.com/TheAlgorithms/Kotlin/blob/master/src/test/kotlin/dynamicProgramming/FactorialTest.kt) |
40 | 44 | * [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) |
41 | 46 | * [Matrixchainmultiplicationtest](https://github.com/TheAlgorithms/Kotlin/blob/master/src/test/kotlin/dynamicProgramming/MatrixChainMultiplicationTest.kt) |
42 | 47 | * [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) |
43 | 50 | * [Zerooneknapsackproblemtest](https://github.com/TheAlgorithms/Kotlin/blob/master/src/test/kotlin/dynamicProgramming/ZeroOneKnapsackProblemTest.kt) |
44 | 51 | * Math |
45 | 52 | * [Averagetest](https://github.com/TheAlgorithms/Kotlin/blob/master/src/test/kotlin/math/AverageTest.kt) |
|
52 | 59 | * [Linearsearchtest](https://github.com/TheAlgorithms/Kotlin/blob/master/src/test/kotlin/search/LinearSearchTest.kt) |
53 | 60 | * [Ternarysearchtest](https://github.com/TheAlgorithms/Kotlin/blob/master/src/test/kotlin/search/TernarySearchTest.kt) |
54 | 61 | * Sort |
| 62 | + * [Bricksorttest](https://github.com/TheAlgorithms/Kotlin/blob/master/src/test/kotlin/sort/BrickSortTest.kt) |
55 | 63 | * [Bubblesorttest](https://github.com/TheAlgorithms/Kotlin/blob/master/src/test/kotlin/sort/BubbleSortTest.kt) |
56 | 64 | * [Heapsorttest](https://github.com/TheAlgorithms/Kotlin/blob/master/src/test/kotlin/sort/HeapSortTest.kt) |
57 | 65 | * [Insertionsorttest](https://github.com/TheAlgorithms/Kotlin/blob/master/src/test/kotlin/sort/InsertionSortTest.kt) |
|
0 commit comments