#ifndef S0209_MINIMUM_SIZE_SUBARRAY_SUM_HPP #define S0209_MINIMUM_SIZE_SUBARRAY_SUM_HPP #include #include using namespace std; class S0209 { public: int minSubArrayLen(int target, vector& nums); }; #endif