[HackerLank] Flipping the Matrix - 문제풀이 Description 주어진 2N2N 크기의 배열에서 각 요소의 위치를 바꿔 nn의 크기의 요소의 합이 가장 큰 값을 반환하는 문제입니다. Solution 1. Matrix public static int flippingMatrix(List matrix) { // Write your code here int m = matrix.size(); int n = matrix.get(0).size(); int sum = 0; //Divide size by 2 to get quadrant size int quadSize = matrix.size()/2; //Now for each cell in the upper quadrant, get the max value that could be flipped into tha.. 알고리즘/HackerRank 2022. 3. 15. 23:48