Sample input. [['1', '.', '.', '.', '.', '3', '.'], ['.', '.', '.', '.', '.', '.', '.'], ['.', '1', '.', '.', '0', '.', '.'], ['.', '.', '.', '2', '.', '.', '.'], ['.', '3', '.', '.', '.', '.', '3'], ['.', '.', '.', '.', '1', '.', '.'], ['.', '.', '.', '1', '.', '.', '1']] Solution with stars: [['1', '★', '.', '.', '★', '3', '★'], ['.', '.', '.', '.', '.', '.', '★'], ['.', '1', '.', '.', '.', '.', '.'], ['.', '.', '★', '2', '.', '.', '★'], ['.', '3', '★', '.', '.', '★', '3'], ['.', '.', '★', '.', '1', '.', '★'], ['.', '.', '.', '1', '.', '.', '1']] Output: Solution (list of tuples containting the 10 stars): [(0, 1), (0, 4), (0, 6), (1, 6), (3, 2), (3, 6), (4, 2), (4, 5), (5, 2), (5, 6)]
Sample input.
[['1', '.', '.', '.', '.', '3', '.'], ['.', '.', '.', '.', '.', '.', '.'], ['.', '1', '.', '.', '0', '.', '.'], ['.', '.', '.', '2', '.', '.', '.'], ['.', '3', '.', '.', '.', '.', '3'], ['.', '.', '.', '.', '1', '.', '.'], ['.', '.', '.', '1', '.', '.', '1']]
Solution with stars:
[['1', '★', '.', '.', '★', '3', '★'], ['.', '.', '.', '.', '.', '.', '★'], ['.', '1', '.', '.', '.', '.', '.'], ['.', '.', '★', '2', '.', '.', '★'], ['.', '3', '★', '.', '.', '★', '3'], ['.', '.', '★', '.', '1', '.', '★'], ['.', '.', '.', '1', '.', '.', '1']]
Output:
Solution (list of tuples containting the 10 stars):
[(0, 1), (0, 4), (0, 6), (1, 6), (3, 2), (3, 6), (4, 2), (4, 5), (5, 2), (5, 6)]
Step by step
Solved in 3 steps
incorrect solution. different with the screenshot
Processing time is too long. cannot execute solution