Domanda di colloquio di BlackBerry

write a function to convert a list of integer to a list of strings in python.

Risposta di colloquio

Anonimo

29 lug 2016

c_string = lambda xs : [ str(x) for x in xs ] c_string( [1, 2,3,4])