Objective
Implement mirror_rows, a function that reverses every row of a 2D list.
Steps
$ mirror_rows([[8, 1, 4], [3, 5, 9]])
[[4, 1, 8], [9, 5, 3]]
$ mirror_rows([[6], [], [7, 8]])
[[6], [], [8, 7]]
Expected files
Allowed functions
None. Write every helper yourself.

Objective
Implement mirror_rows, a function that reverses every row of a 2D list.
Steps
$ mirror_rows([[8, 1, 4], [3, 5, 9]])
[[4, 1, 8], [9, 5, 3]]
$ mirror_rows([[6], [], [7, 8]])
[[6], [], [8, 7]]
Expected files
Allowed functions
None. Write every helper yourself.

Tests
Run the tests to grade your code