diff --git a/Leetcode-Medium/48 - Rotate Image/RotateImage.py b/Leetcode-Medium/48 - Rotate Image/RotateImage.py new file mode 100644 index 0000000..29be4df --- /dev/null +++ b/Leetcode-Medium/48 - Rotate Image/RotateImage.py @@ -0,0 +1,17 @@ +class Solution: + def rotate(self, matrix: List[List[int]]) -> None: + """ + Do not return anything, modify matrix in-place instead. + """ + temp1 = [] + j=0 + while j