7 kyu
Grid index
1,019 of 1,992topping
Description:
You are given an n by n ( square ) grid of characters, for example:
[['m', 'y', 'e'],
['x', 'a', 'm'],
['p', 'l', 'e']]
You are also given a list of integers as input, for example:
[1, 3, 5, 8]
You have to find the characters in these indexes of the grid if you think of the indexes as:
[[1, 2, 3],
[4, 5, 6],
[7, 8, 9]]
Remember that the indexes start from one and not zero.
Then you output a string like this:
"meal"
All inputs will be valid.
Lists
Fundamentals
Similar Kata:
Stats:
Created | Sep 8, 2020 |
Published | Sep 9, 2020 |
Warriors Trained | 2905 |
Total Skips | 30 |
Total Code Submissions | 4944 |
Total Times Completed | 1992 |
Python Completions | 1019 |
JavaScript Completions | 871 |
Haskell Completions | 45 |
Rust Completions | 118 |
Total Stars | 28 |
% of votes with a positive feedback rating | 92% of 374 |
Total "Very Satisfied" Votes | 323 |
Total "Somewhat Satisfied" Votes | 43 |
Total "Not Satisfied" Votes | 8 |
Total Rank Assessments | 29 |
Average Assessed Rank | 7 kyu |
Highest Assessed Rank | 6 kyu |
Lowest Assessed Rank | 8 kyu |