摘要: 1.题目介绍 2.题解 2.1 快排+遍历 思路 同本系列前几题一样 代码 class Solution { public: std::vector<int> singleNumber(std::vector<int>& nums) { int count = 0; std::vector<int> 阅读全文
posted @ 2023-10-17 12:48 DawnTraveler 阅读(8) 评论(0) 推荐(0) 编辑
摘要: 1.题目介绍 2.题解 2.1 枚举 思路 直接从[1,n]进行一次遍历,判断出能被整除的数便加到一个变量result中 代码 class Solution { public: int sumOfMultiples(int n) { int result = 0; for (int i = 1; i 阅读全文
posted @ 2023-10-17 10:29 DawnTraveler 阅读(52) 评论(0) 推荐(0) 编辑