Pergunta de entrevista da empresa TIAA

Write a program to Reverse the words in the sentence "My name is Anurag Awasthi" Me: That's a very simple program. *Egotistically. Wrote it in few seconds.*

Resposta da entrevista

Sigiloso

19 de mar. de 2019

String [] a = "My name is Anurag Awasthi".split("\\s+"); int n = a.length; for(int i = 0 ; i

2