Skip to content

Python coding challenges and implementing Machine Learning algorithms from scratch.

Notifications You must be signed in to change notification settings

Tsmith5151/coding-challenges

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 

Repository files navigation

Coding Challenges

This repo contains my solutions to some LeetCode and HackerRank challenges in addition to scripts covering various data structures/algorithms written in Python. The repo will be periodically updated with more examples over time covering the following problem types:

  • Arrays
  • Binary Search
  • Binary Trees
  • N-Ary Trees
  • Backtracking
  • Breadth First Search (BFS)
  • Depth First Search (DFS)
  • Dynamic Programming
  • Hashmap
  • Heaps
  • Linked List
  • Matrix
  • Probability
  • Queue
  • Stacks
  • Sort
  • Strings

References

Link to LeetCode and HackerRank. Also, credit given to the following resources which helped gain a deep understanding of data structures/algorithms and other general Python fundamentals.