leet-code/src/main/java/leetcode/editor/cn/RichestCustomerWealth.java
2022-04-14 08:52:16 +08:00

72 lines
1.8 KiB
Java
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//给你一个 m x n 的整数网格 accounts ,其中 accounts[i][j] 是第 i 位客户在第 j 家银行托管的资产数量。返回最富有客户所拥
//有的 资产总量 。
//
// 客户的 资产总量 就是他们在各家银行托管的资产数量之和。最富有客户就是 资产总量 最大的客户。
//
//
//
// 示例 1
//
// 输入accounts = [[1,2,3],[3,2,1]]
//输出6
//解释:
//第 1 位客户的资产总量 = 1 + 2 + 3 = 6
//第 2 位客户的资产总量 = 3 + 2 + 1 = 6
//两位客户都是最富有的,资产总量都是 6 ,所以返回 6 。
//
//
// 示例 2
//
// 输入accounts = [[1,5],[7,3],[3,5]]
//输出10
//解释:
//第 1 位客户的资产总量 = 6
//第 2 位客户的资产总量 = 10
//第 3 位客户的资产总量 = 8
//第 2 位客户是最富有的,资产总量是 10
//
// 示例 3
//
// 输入accounts = [[2,8,7],[7,1,3],[1,9,5]]
//输出17
//
//
//
//
// 提示:
//
//
// m == accounts.length
// n == accounts[i].length
// 1 <= m, n <= 50
// 1 <= accounts[i][j] <= 100
//
// Related Topics 数组 矩阵 👍 53 👎 0
package leetcode.editor.cn;
//1672:最富有客户的资产总量
public class RichestCustomerWealth {
public static void main(String[] args) {
Solution solution = new RichestCustomerWealth().new Solution();
// TO TEST
}
//leetcode submit region begin(Prohibit modification and deletion)
class Solution {
public int maximumWealth(int[][] accounts) {
int max = 0;
for (int[] account : accounts) {
int sum = 0;
for (int i : account) {
sum += i;
}
max = Math.max(max, sum);
}
return max;
}
}
//leetcode submit region end(Prohibit modification and deletion)
}