Question d’entretien chez Duo Security

Write an algorithm to reverse a string in place.

Réponses aux questions d'entretien

Utilisateur anonyme

13 mars 2015

You should be able to do this :-)

1

Utilisateur anonyme

20 déc. 2018

// C# char[] ar = st.ToCharArray(); Array.Reverse( ar ); string sNew = new string( charArray );