Question d’entretien chez Yodlee

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

Réponses aux questions d'entretien

Utilisateur anonyme

7 sept. 2014

Hey What were the questions asked in coding round??

2

Utilisateur anonyme

28 juil. 2015

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

Utilisateur anonyme

13 août 2016

what was the GD topic