Amazon interview question

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

Interview Answer

Anonymous

23 Jul 2018

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

12