Question d’entretien chez Netskope

Write two functions that reverse a string in different ways. (Any language)

Réponse à la question d'entretien

Utilisateur anonyme

7 août 2018

1. Start at the end and build the reversed string. 2. Use head and tail pointers to make successive swaps.

2