employer cover photo
employer logo
employer logo

Rubicon Project

Agora conhecido(a) como Magnite

Essa empresa é sua?

Pergunta de entrevista da empresa Rubicon Project

reverse a character array

Resposta da entrevista

Sigiloso

4 de nov. de 2017

made ouput array, started reading elements from the end of the input array, stored them one by one in the output array , thereby achieved reversed character array was asked to reduce space complexity got rid of the output array, defined a temporary variable, and started swapping first element by last, second by second last, thereby reduced the time and space complexity in half.