package
0.0.0-20240710215349-97bfe1c12a25
Repository: https://github.com/allensg/codingproblems.git
Documentation: pkg.go.dev

# README

A set of problems from Daily Interview Pro https://www.techseries.dev/daily. Spent some time using this for interview prep a while back. There are a lot of these that aren't done, and might be some overlap with the leetcode problems.

# Packages

No description provided by the author

# Functions

Same determines whether the trees t1 and t2 contain the same values.
No description provided by the author
No description provided by the author

# Structs

No description provided by the author
should work like q = Queue() q.enqueue(1) q.enqueue(2) q.enqueue(3) print q.dequeue() print q.dequeue() print q.dequeue() # 1 2 3.