Related Books

Cracking the Coding Interview
Language: en
Pages: 0
Authors: Gayle Laakmann McDowell
Categories: Computer programmers
Type: BOOK - Published: 2011 - Publisher: CreateSpace

DOWNLOAD EBOOK

Now in the 5th edition, Cracking the Coding Interview gives you the interview preparation you need to get the top software developer jobs. This book provides: 1
Elements of Programming Interviews
Language: en
Pages: 504
Authors: Adnan Aziz
Categories: Computers
Type: BOOK - Published: 2012-10-11 - Publisher: EPI

DOWNLOAD EBOOK

The core of EPI is a collection of over 300 problems with detailed solutions, including 100 figures, 250 tested programs, and 150 variants. The problems are rep
Programming Interviews Exposed
Language: en
Pages: 253
Authors: John Mongan
Categories: Computers
Type: BOOK - Published: 2011-08-10 - Publisher: John Wiley & Sons

DOWNLOAD EBOOK

The pressure is on during the interview process but with the right preparation, you can walk away with your dream job. This classic book uncovers what interview
Cracking the Coding Interview
Language: en
Pages: 708
Authors: Gayle Laakmann McDowell
Categories: Business & Economics
Type: BOOK - Published: 2015 - Publisher: Careercup

DOWNLOAD EBOOK

Now in the 6th edition, the book gives you the interview preparation you need to get the top software developer jobs. This is a deeply technical book and focuse
Dynamic Programming for Coding Interviews
Language: en
Pages: 145
Authors: Meenakshi
Categories: Computers
Type: BOOK - Published: 2017-01-18 - Publisher: Notion Press

DOWNLOAD EBOOK

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);