Lets Code Everyday - Day 19
Question - 19:
Left and Right Sum Differences
Given a 0-indexed integer array nums, find a 0-indexed integer array answer where:
answer.length == nums.length.
answer[i] = |leftSum[i] - rightSum[i]|.
Where:
leftSum[i] is the sum of elements to th...
vinayrangaraju.hashnode.dev6 min read