L138 Subarray Sum
Given an integer array, find a subarray where the sum of numbers is zero. Your code should return the index of the first number and the index of the last number.
Notice
There is at least one subarray that it's sum equals to zero.
Example
Given[-3, 1, 2, -3, 4]
, return[0, 2]
or[1, 3]
.
这题求的是sum为0,一开始做的时候在蛋疼地slide window。后来发现原来是要用hashmap做。
把数组内元素逐个相加
如果有等于0的subarray的话,在那些数之前的sum跟过了subarray之后的sum会相等。所以用一个Hashmap来存储sum和位置。
最后,如果sum了整个array都没有找到的话,就没有了。
例子:
Last updated