Rotate Image

Title: Rotate Image Source: leetcode.com

You are given an n x n 2D matrix representing an image.

Rotate the image by 90 degrees (clockwise).

Follow up:
Could you do this in-place?

Java solution

Python solution

(Not an in place solution)

Rate this post

Leave a Reply