I'm working on some polybius functions-one of them is supposed to fill in the grid with a string and the other is supposed to find the location of a given character in the grid and print out its coordinate location.
For the first function I posted I am getting an error "Expected body of lambda expression" on line 6.
return [row][col];
I want to know why do you think that that does what you want.
you said that you'll return a string, `row' and `col' are numbers so you simply enclose them in brackets and expect that to work...
> on line 6.
¿do you see line numbers in your post?