From b2532fbb3f83b40d961c1daab2b1178fb00f7d97 Mon Sep 17 00:00:00 2001 From: Sumeet Jain <68370214+sumeet2-lab@users.noreply.github.com> Date: Wed, 5 Oct 2022 14:05:52 +0530 Subject: [PATCH 1/2] 1672-Leetcode solution --- 1672-richestcustomerwealth | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 1672-richestcustomerwealth diff --git a/1672-richestcustomerwealth b/1672-richestcustomerwealth new file mode 100644 index 0000000..3706b0e --- /dev/null +++ b/1672-richestcustomerwealth @@ -0,0 +1,20 @@ +class Solution { + public int maximumWealth(int[][] acc) { + int max=0; + for (int i=0;imax) + { + max=sum; + } + } + + return max; + } +} From 2faa59e920521d158e0bdd187ab0faa7804807cf Mon Sep 17 00:00:00 2001 From: Sumeet Jain <68370214+sumeet2-lab@users.noreply.github.com> Date: Wed, 5 Oct 2022 14:20:10 +0530 Subject: [PATCH 2/2] Rename 1672-richestcustomerwealth to 1672-richestcustomerwealth.java --- 1672-richestcustomerwealth => 1672-richestcustomerwealth.java | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename 1672-richestcustomerwealth => 1672-richestcustomerwealth.java (100%) diff --git a/1672-richestcustomerwealth b/1672-richestcustomerwealth.java similarity index 100% rename from 1672-richestcustomerwealth rename to 1672-richestcustomerwealth.java