Pergunta de entrevista da empresa Yodlee

I was not able to code reversing a Query using recursion. :(

Respostas da entrevista

Sigiloso

7 de set. de 2014

Hey What were the questions asked in coding round??

2

Sigiloso

28 de jul. de 2015

static String reverse(String s) { if((s==null)||(s.length()<=1)) { return s; } return reverse(s.substring(1))+s.charAt(0); }

Sigiloso

13 de ago. de 2016

what was the GD topic