Skip to content

Commit 8de3624

Browse files
authored
Create 0217_Problem_1.r
1 parent dab4ca3 commit 8de3624

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

0217_Problem_1.r

+7
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)