We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dab4ca3 commit 8de3624Copy full SHA for 8de3624
0217_Problem_1.r
@@ -0,0 +1,7 @@
1
+# code_report Solution
2
+# Problem Link (Contest): https://leetcode.com/contest/weekly-contest-217/problems/richest-customer-wealth/
3
+# Problem Link (Practice): https://leetcode.com/problems/richest-customer-wealth/
4
+
5
+maximumWealth <- function(accounts) {
6
+ return(max(rowSums(accounts)))
7
+}
0 commit comments