Pergunta de entrevista da empresa Unata

How do you reverse a list of characters?

Resposta da entrevista

Sigiloso

12 de dez. de 2016

in python: a = ['a', 'b', 'c', 'd'] b = a[::-1] b will be the reverse of a

1