[LeetCode] 1337. The K Weakest Rows in a Matrix - 문제풀이
Description 주어진 행렬에서 1은 병사, 0은시민을 나타낼때 병사는 시민의 왼쪽에만 위치 할 수 있습니다. 이때 각 row에서 병사의 수가 적은 순서대로 약하고 병사의 수가 같을경우 row가 적을경우더 약하다고 했을때 약한 순서대로 row를 반환하는 문제입니다. You are given an m x n binary matrix mat of 1's (representing soldiers) and 0's (representing civilians). The soldiers are positioned in front of the civilians. That is, all the 1's will appear to the left of all the 0's in each row. A row i is w..