[leetcode][C++] rotate image
https://leetcode.com/problems/rotate-image/ Rotate Image - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com [leetcode][C++] rotate image 처음엔 노가다 구현을 했지만.. 배열을 시계방향으로 90도 회전 = 대각선 대칭 값 변경 + 좌우 대칭 값 변경 1 2 3 4 5 6 7 8 9 ↓ 대각선 대칭 값 변경 1 4 7 2 5 8 3 6 9 ↓ 좌우 대칭 값 변경 7 4 1 8 5 2 9 6 3 이렇..
Problem Solving
2021. 10. 16. 21:54