示例#1
0
 bool includesL(void* p) const 		{ return findL(p) != NULL; }
示例#2
0
文件: 34.cpp 项目: CC91/LeetCode
 vector<int> searchRange(vector<int>& nums, int target) {
     int l = findL(nums, target), r = findR(nums, target);
     return {l, r};
 }