Skip to content

Latest commit

 

History

History
11 lines (10 loc) · 954 Bytes

File metadata and controls

11 lines (10 loc) · 954 Bytes

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