algorithms
algorithms copied to clipboard
Solved algorithms and data structures problems in many languages
Hello, I have proposed the following changes to include optimized code and resemble pythonic syntax in the strings section. 1. Added function `is_palindrome_pythonic()` in `strings/is_palindrome.py` file. Used list comprehension to...
We should standarize the way we write test cases across problems and across languages. It would also be nice to have some sort of CI Pipeline and make the code...
I'd like to build a static site where you could preview the solutions for each problem in each of the languages. We could use something like Gatsby.js to parse the...
We need to improve the comments explaining the main ideas / insights of the solution
Each solution should have a comment stating the time (and maybe the space) complexity of the solution
added a few comments on circular_counter.py
inversions Algo
add the radix sort algorithm to the 'sort' directory (sort/radix_sort.py) and also include the test cases.
This PR adds a random line to the README.md for testing purposes as requested. [This Devin run](https://staging.itsdev.in/devin/04e5b73b15f24ae59c0bb1513360a5d0) was requested by Federico.
# Trie Data Structure Implementation This pull request (#88) implements a Trie data structure in Python for the `marcosfede/algorithms` repository. The Trie is a tree-like data structure used for efficient...