mirror of
https://gitee.com/coder-xiaomo/leetcode-problemset
synced 2025-09-04 06:51:41 +08:00
存量题库数据更新
This commit is contained in:
@@ -3,7 +3,7 @@
|
||||
<p>A customer's <strong>wealth</strong> is the amount of money they have in all their bank accounts. The richest customer is the customer that has the maximum <strong>wealth</strong>.</p>
|
||||
|
||||
<p> </p>
|
||||
<p><strong>Example 1:</strong></p>
|
||||
<p><strong class="example">Example 1:</strong></p>
|
||||
|
||||
<pre>
|
||||
<strong>Input:</strong> accounts = [[1,2,3],[3,2,1]]
|
||||
@@ -14,7 +14,7 @@
|
||||
</code>Both customers are considered the richest with a wealth of 6 each, so return 6.
|
||||
</pre>
|
||||
|
||||
<p><strong>Example 2:</strong></p>
|
||||
<p><strong class="example">Example 2:</strong></p>
|
||||
|
||||
<pre>
|
||||
<strong>Input:</strong> accounts = [[1,5],[7,3],[3,5]]
|
||||
@@ -25,7 +25,7 @@
|
||||
3rd customer has wealth = 8
|
||||
The 2nd customer is the richest with a wealth of 10.</pre>
|
||||
|
||||
<p><strong>Example 3:</strong></p>
|
||||
<p><strong class="example">Example 3:</strong></p>
|
||||
|
||||
<pre>
|
||||
<strong>Input:</strong> accounts = [[2,8,7],[7,1,3],[1,9,5]]
|
||||
|
Reference in New Issue
Block a user