Minimum Subarray 原题链接: http://lintcode.com/zh-cn/problem/minimum-subarray/# Given an array of integers, find the subarray with smallest sum. Return the sum of the subarray. 注意 The subarray should contain at least one integer. 样例 For [1, -1, -2, 1], r…