▼ 문제 바로가기 (링크) ▼ https://leetcode.com/problems/richest-customer-wealth/ Richest Customer Wealth - 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 정수로 이루어진 m x n 의 그리드 행렬이 주어진다. [i][j] 은 i번째 손님이 j은행에 가지고 있는 재산의 양이다. 가장 부유한 손님의 재산을 return하라. 손님의 재산은 모든 은행의 자산을 합친 값이다. 문제만 읽었을 때는 바로 와..