Rotate ImageMediumAcceptance Rate 71.2%Rotate the image by 90 degrees (clockwise).ExamplesExample 1Inputmatrix = [[1,2,3],[4,5,6],[7,8,9]]Output[[7,4,1],[8,5,2],[9,6,3]]Constraintsn == matrix.length == matrix[i].length1 <= n <= 20-1000 <= matrix[i][j] <= 1000