Ongoing project to both learn rust and practice some interview questions using the amazing
Cracking The Coding Interview
book
- I've used [SinglyLinkedList][structures::SinglyLinkedList] and
[DoubleLinkedList][structures::LinkedList] implementations grabbed
from modulitos/CtCI-rust since the [
std::collections::LinkedList
]'s iterators iterate on inner type which goes against the intended solutions. - I've made some tweaks to the above implementations with some helper methods as well as loosening the Bounds restrictions on the inner type.