- Euclidean GCD -> A method to calculate the Greatest Common Divisor of two numbers using Euclid's Algorithm.
- nCr Operator -> A method to calculate the Combination of two numbers using the definition.
- Newton's Square Root -> A method to calculate the square root of a number using Newton's Method.
- Anagram -> Finds all possible anagrams for a given word. Use
--custom-dictionary filename.txt
for special comparisons to a custom dictionary (it chooses dictionary.txt by default). - Numerical Integral -> Parses an expression and calculates the area under the curve for the parsed function by reimann sums, trapezoid sums, and simpsons rules.
- Newton's Root Finder -> Parses an expression and calculates the root of the parsed function by iterating guesses based on newton's rule.
- Wordle Solver -> Finds the best possible wordle guesses based on user provided input. Fast and accurate.