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
Risposta di colloquio
Anonimo
23 lug 2018
void reverseUtil(char s[]){
int low = 0;
int high = s.length()-1;
while(low