Pregunta de entrevista de Yodlee

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

Respuestas de entrevistas

Anónimo

7 de sept de 2014

Hey What were the questions asked in coding round??

2

Anónimo

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

Anónimo

13 de ago de 2016

what was the GD topic