Kamal Rawat: 3 books

Book cover of Dynamic Programming for Coding Interviews

Dynamic Programming for Coding Interviews

A Bottom-Up approach to problem solving

by Meenakshi & Kamal Rawat
Language: English
Release Date: February 20, 2017

I wanted to compute 80th term of the Fibonacci series. I wrote the rampant recursive function,int fib(int n){ return (1==n 2==n) ? 1 : fib(n-1) + fib(n-2);}and waited for the result. I wait… and wait… and wait…With an 8GB RAM and an Intel i5 CPU, why is it taking so long? I terminated the process...
Book cover of Searching & Sorting for Coding Interviews

Searching & Sorting for Coding Interviews

With 100+ Interview questions

by Meenakshi, Kamal Rawat
Language: English
Release Date: November 7, 2017

Searching & sorting algorithms form the back bone of coding acumen of developers. This book comprehensively covers In-depth tutorial & analysis of all major algorithms and techniques used to search and sort across data structures. All major variations of each algorithm (e.g. Ternary, Jump,...
Book cover of C IN 7 DAYS for CODING INTERVIEWS
by Meenakshi, Kamal Rawat
Language: English
Release Date: January 30, 2018

In my career spanning more than a decade, I have used C language in only two projects. All these years, I had either coded in C++, Java or C#. However, during interviews, I had always coded my solutions in C. When an interviewer asks you to implement a Stack having one extra operation, getMinimum...
We use our own "cookies" and third party cookies to improve services and to see statistical information. By using this website, you agree to our Privacy Policy