diff --git a/1672-richestcustomerwealth.java b/1672-richestcustomerwealth.java new file mode 100644 index 0000000..3706b0e --- /dev/null +++ b/1672-richestcustomerwealth.java @@ -0,0 +1,20 @@ +class Solution { + public int maximumWealth(int[][] acc) { + int max=0; + for (int i=0;imax) + { + max=sum; + } + } + + return max; + } +}