Question d’entretien chez 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

Réponse à la question d'entretien

Utilisateur anonyme

23 juil. 2018

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

12