BlackBerry interview question

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

Interview Answer

Anonymous

29 Jul 2016

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