Pergunta de entrevista da empresa Workday

Technical question was standard: Find the nth Fibonacci number.

Resposta da entrevista

Sigiloso

24 de fev. de 2014

in c++: int fib(int x) { if (x == 0) return 0; if (x == 1) return 1; return fib(x-1)+fib(x-2); }