0 1 MatrixMy solution to 0 1 Matrix. The algorithm first goes through the 2d array and checks for 0 entries and then appends it to the queue. It…Oct 7, 2020Oct 7, 2020
Why simplicity in software development is importantOften times we go through learning important software development concepts that are very important. These principles and design choice…Jun 29, 2020Jun 29, 2020
Database NormalizationCouple of times I had the experience of using MySQL and using it in my applications. My first database experience was MongoDB or a NoSQL…Aug 20, 2018Aug 20, 2018
Blocking QueueThe consumer and producer is that classic Computer Science problem. The story goes that the consumer is consuming or removing one element…Jun 7, 2018Jun 7, 2018
An implementation of Queue and Stacks in Objective-CQueues and Stacks are amazing data structures. They are used in areas of graph algorithms and compilers design. Generally, they are a great…Jun 6, 2018Jun 6, 2018
Toggle State Machine in JavaOften times I find myself needing a class that toggles between two values. A good problem is to use a boolean data type and simply toggle…Jun 2, 2018Jun 2, 2018