Question d’entretien chez Aloha Technology

Reverse a string from input and output it

Réponse à la question d'entretien

Utilisateur anonyme

27 juin 2023

Using the two pointer method, A pointer incrementing from the start to the middle And another decrementing from the end to the middle Swapping values at each step.

3