Day 68 of
@Java Learning Series (JLS):
Solved
@LeetCode's Rotate Image problem.
Given an n x n matrix, rotated it 90ยฐ clockwise by:
1๏ธโฃ Taking the transpose of the matrix.
2๏ธโฃ Reversing each row.
Achieved 0ms runtime, had fun solving it!๐ก๐
#MatrixManipulation #JavaLearning