Pergunta de entrevista da empresa SLB

Reverse a string using recursion.

Resposta da entrevista

Sigiloso

5 de jun. de 2018

function abc(str) { if(str){ print reverse(str+1); } }

1