Pergunta de entrevista da empresa Amazon

6 debug questions for first round. String processing like 1. reverse a string 2. judge whether two strings are permulation 3 find all permutation of a string

Resposta da entrevista

Sigiloso

23 de jul. de 2018

void reverseUtil(char s[]){ int low = 0; int high = s.length()-1; while(low

12