/python_algorithms_and_data_structures

A collection of Python Algorithms and Data Structures

Primary LanguagePythonGNU General Public License v3.0GPL-3.0

Python Algorithms and Data Structures

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

Problems Solutions
Managing multiple items
manage a number of items in an ordered structure
managing_multiple_items.py
Letter frequency
analysing the frequency of letters in a string using loops and lists
letter_frequency.py
Mirror Identity matrix
using smart logic, loops, and algorithms to output the mirror image of an identity matrix
identity_matrix.py
Prison break
break prisoners out of a unique prison using lists, logic, and loops
prison_break.py