Meta Interview Question

given a string ( char* ) Write a program to Rotate its words i.e: void RotateWords(char* str);

Interview Answer

Anonymous

Aug 18, 2018

Use divide and conquer to rotate in O(log n) time

1