当前位置:网站首页>剑指 Offer 57 - II. 和为s的连续正数序列(滑动窗口)
剑指 Offer 57 - II. 和为s的连续正数序列(滑动窗口)
2022-08-09 12:45:00 【养猪去】
剑指 Offer 57 - II. 和为s的连续正数序列(滑动窗口)
class Solution {
public:
vector<vector<int>> findContinuousSequence(int target) {
vector<vector<int>>vec;
vector<int> res;
for (int l = 1, r = 2; l < r;){
int sum = (l + r) * (r - l + 1) / 2;
if (sum == target) {
res.clear();
for (int i = l; i <= r; ++i) {
res.emplace_back(i);
}
vec.emplace_back(res);
l++;
} else if (sum < target) {
r++;
} else {
l++;
}
}
return vec;
}
};
边栏推荐
- Report: The number of students who want to learn AI has increased by 200%, and there are not enough teachers
- Clock frequency and baud rate count for serial communication in FPGA
- AI basketball referee, walking is special, ask harden care don't care
- Rust 入门指南(使用JSON)
- Flutter入门进阶之旅(六)Layout Widget
- 驻波比计算方法
- Flutter Getting Started and Advanced Tour (3) Text Widgets
- kustomize entry example and basic syntax instructions
- Redis源码剖析之跳表(skiplist)
- Flutter introduction advanced trip (5) Image Widget
猜你喜欢
Flutter Getting Started and Advanced Tour (8) Button Widget
Flutter Getting Started and Advanced Tour (3) Text Widgets
novel research
生成上传密钥和密钥库
The new features of ABP 6.0.0 - rc. 1
jenkins api create custom pipeline
Go 事,如何成为一个Gopher ,并在7天找到 Go 语言相关工作,第1篇
Go Affair, How to Become a Gopher and Find a Go Job in 7 Days, Part 1
WSA工具箱安装应用商店提示无法工作怎么解决?
电脑重装系统还原0x80070005错误如何解决
随机推荐
GIN初探,环境安装
JVM常用监控工具解释以及使用
ftplib+ tqdm upload and download progress bar
5G China unicom 一般性异常处理
World's 4th mad scientist dies on his 103rd birthday
kustomize入门示例及基本语法使用说明
某高校的R语言数据分析期末作业
Go Affair, How to Become a Gopher and Find a Go Job in 7 Days, Part 1
GIN中GET POST PUT DELETE请求
关于Retrofit网络请求URL中含有可变参数的处理
透明tune proxy
Flutter introduction advanced trip (5) Image Widget
read stream special attention
Clock frequency and baud rate count for serial communication in FPGA
陈强教授《机器学习及R应用》课程 第十六章作业
NFS 特别注意权限的问题
腾讯发布第二代四足机器人Max,梅花桩上完成跳跃、空翻
glide工具类的简单封装
ftplib+ tqdm 上传下载进度条
WebView injects Js code to realize large image adaptive screen click image preview details