Pregunta de entrevista de Yodlee

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

Respuestas de entrevistas

Anónimo

7 sept 2014

Hey What were the questions asked in coding round??

2

Anónimo

28 jul 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 ago 2016

what was the GD topic