Frage im Vorstellungsgespräch bei Duo Security

Write an algorithm to reverse a string in place.

Antworten zu Vorstellungsgespräch

Anonym

13. März 2015

You should be able to do this :-)

1

Anonym

20. Dez. 2018

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