|
23 | 23 | * Eigenvalue |
24 | 24 | * [Poweriterationtests](https://github.com/TheAlgorithms/C-Sharp/blob/master/Algorithms.Tests/LinearAlgebra/Eigenvalue/PowerIterationTests.cs) |
25 | 25 | * Numeric |
| 26 | + * [Aliquottest](https://github.com/TheAlgorithms/C-Sharp/blob/master/Algorithms.Tests/Numeric/AliquotTest.cs) |
26 | 27 | * [Binomialcoefficienttests](https://github.com/TheAlgorithms/C-Sharp/blob/master/Algorithms.Tests/Numeric/BinomialCoefficientTests.cs) |
27 | 28 | * Decomposition |
28 | 29 | * [Lutests](https://github.com/TheAlgorithms/C-Sharp/blob/master/Algorithms.Tests/Numeric/Decomposition/LUTests.cs) |
|
35 | 36 | * Greatestcommondivisor |
36 | 37 | * [Binarygreatestcommondivisorfindertests](https://github.com/TheAlgorithms/C-Sharp/blob/master/Algorithms.Tests/Numeric/GreatestCommonDivisor/BinaryGreatestCommonDivisorFinderTests.cs) |
37 | 38 | * [Euclideangreatestcommondivisorfindertests](https://github.com/TheAlgorithms/C-Sharp/blob/master/Algorithms.Tests/Numeric/GreatestCommonDivisor/EuclideanGreatestCommonDivisorFinderTests.cs) |
| 39 | + * [Narcissisticnumbertest](https://github.com/TheAlgorithms/C-Sharp/blob/master/Algorithms.Tests/Numeric/NarcissisticNumberTest.cs) |
| 40 | + * [Perfectnumbertest](https://github.com/TheAlgorithms/C-Sharp/blob/master/Algorithms.Tests/Numeric/PerfectNumberTest.cs) |
| 41 | + * [Perfectsquaretest](https://github.com/TheAlgorithms/C-Sharp/blob/master/Algorithms.Tests/Numeric/PerfectSquareTest.cs) |
38 | 42 | * Pseudoinverse |
39 | 43 | * [Pseudoinversetests](https://github.com/TheAlgorithms/C-Sharp/blob/master/Algorithms.Tests/Numeric/PseudoInverse/PseudoInverseTests.cs) |
40 | 44 | * Other |
|
115 | 119 | * Eigenvalue |
116 | 120 | * [Poweriteration](https://github.com/TheAlgorithms/C-Sharp/blob/master/Algorithms/LinearAlgebra/Eigenvalue/PowerIteration.cs) |
117 | 121 | * Numeric |
| 122 | + * [Aliquot](https://github.com/TheAlgorithms/C-Sharp/blob/master/Algorithms/Numeric/Aliquot.cs) |
118 | 123 | * [Binomialcoefficient](https://github.com/TheAlgorithms/C-Sharp/blob/master/Algorithms/Numeric/BinomialCoefficient.cs) |
119 | 124 | * Decomposition |
120 | 125 | * [Lu](https://github.com/TheAlgorithms/C-Sharp/blob/master/Algorithms/Numeric/Decomposition/LU.cs) |
|
128 | 133 | * [Binarygreatestcommondivisorfinder](https://github.com/TheAlgorithms/C-Sharp/blob/master/Algorithms/Numeric/GreatestCommonDivisor/BinaryGreatestCommonDivisorFinder.cs) |
129 | 134 | * [Euclideangreatestcommondivisorfinder](https://github.com/TheAlgorithms/C-Sharp/blob/master/Algorithms/Numeric/GreatestCommonDivisor/EuclideanGreatestCommonDivisorFinder.cs) |
130 | 135 | * [Igreatestcommondivisorfinder](https://github.com/TheAlgorithms/C-Sharp/blob/master/Algorithms/Numeric/GreatestCommonDivisor/IGreatestCommonDivisorFinder.cs) |
| 136 | + * [Narcissisticnumber](https://github.com/TheAlgorithms/C-Sharp/blob/master/Algorithms/Numeric/NarcissisticNumber.cs) |
| 137 | + * [Perfectnumber](https://github.com/TheAlgorithms/C-Sharp/blob/master/Algorithms/Numeric/PerfectNumber.cs) |
| 138 | + * [Perfectsquare](https://github.com/TheAlgorithms/C-Sharp/blob/master/Algorithms/Numeric/PerfectSquare.cs) |
131 | 139 | * Pseudoinverse |
132 | 140 | * [Pseudoinverse](https://github.com/TheAlgorithms/C-Sharp/blob/master/Algorithms/Numeric/Pseudoinverse/PseudoInverse.cs) |
133 | 141 | * Series |
|
0 commit comments