Sign up
Forgot password?
FAQ: Login

Coding interviews

  • Folding files by type is disabled
K
CareerMonk Plublications, 2017. — 520 p. — ISBN13: 978-8193245200. "Coding Interview Questions" is a book that presents interview questions in simple and straightforward manner with a clear-cut explanation. This book will provide an introduction to the basics. It comes handy as an interview and exam guide for computer scientists.
  • №1
  • 64,41 MB
  • added
  • info modified
M
Notion Press, 2017. — 142 p. — ISBN: 978-1-946556-70-7. 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 and tried computing...
  • №2
  • 7,80 MB
  • added
  • info modified
There are no files in this category.

Comments

There are no comments.
Up