1
" You have two arrays
letras = ["m", "D", " ", "e", " ", "G", "v", "e", "i", "e", " ", "r", "S", "G", "D", "u"];
caminho = [ 12, 7, 11, 9, 8, 4, 15, 0, 2, 13, 14, 5, 10, 1, 3, 6];
There’s a hidden phrase that you have to figure out, but not just that! you must write the function (in any programming language) that solves the problem. "
Good afternoon, I need to solve this problem and I would like suggestions, because I am in the second period of BSI and I am not understanding what is the "path" of the array.
Path means you must access array elements
letras
by the index given by the elements in the arraycaminho
. E.g:letras[12]
,letras[7]
,letras[11]
, etc. What have you tried so far? (Post your code).– Anthony Accioly