15 lines
239 B
C++
15 lines
239 B
C++
#ifndef S0209_MINIMUM_SIZE_SUBARRAY_SUM_HPP
|
|
#define S0209_MINIMUM_SIZE_SUBARRAY_SUM_HPP
|
|
|
|
#include <vector>
|
|
#include <climits>
|
|
|
|
using namespace std;
|
|
|
|
class Solution {
|
|
public:
|
|
int minSubArrayLen(int target, vector<int>& nums);
|
|
};
|
|
|
|
#endif
|