A collection of Python Algorithms and Data Structures.
This collection has varieties of algorithms and data structures problems and solutions. This will be updated upon new solutions.
Problems | Solutions |
---|---|
Managing multiple itemsmanage a number of items in an ordered structure |
managing_multiple_items.py |
Letter frequencyanalysing the frequency of letters in a string using loops and lists |
letter_frequency.py |
Mirror Identity matrixusing smart logic, loops, and algorithms to output the mirror image of an identity matrix |
identity_matrix.py |
Prison breakbreak prisoners out of a unique prison using lists, logic, and loops |
prison_break.py |