This repo contains random python files that I created to practice coding in python
| File | Desc |
|---|---|
| linked_list.py | singly linked list practice |
| merge_sort.py | merge sort implementation |
| quick_sort.py | quick sort implementation |
| largest_pali.py | Finds the largest substring palindrome in a string |
| binary_search.py | Binary Search algo practice |
| sorting_dictionary.py | quick way to sort dictionary |
| string_mainpulation.py | simple string manipulations |
| binary_search_tree.py | Binary Search Tree implementation |
Peter Wu