Netskope interview question

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

Interview Answer

Anonymous

Aug 7, 2018

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

2