February 26, 2023

LeetCode Contest 334

6369. Left and Right Sum Differences 给你一个下标从 0 开始的整数数组 nums ,请你找出一个下标从 0 开始的整数数组 answer ,其中: answer.length == nums.length answer = |leftSum - rightSum| 其中: leftSum 是数组 nums 中下标 i 左侧元素之和。如果不存在对应的元素,leftSum…