Posts tagged with “practicing”

My Process for Coding Interview (Book) Exercises

I’ve become frustrated at the time it takes me to solve some coding problems while practicing for the coding interview. I’ve spent as much as 2 hours on a single problem. A typical coding interview question should take approximately 40 minutes to complete from initial explanation to…

Read more

In the Queue

I’m working on queues today. I’m implementing a queue using a fixed-size array, and also using a linked list. These are the four operations each will support: enqueue(value) - adds item at end of available storage dequeue() - returns value and removes least recently added…

Read more