523

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了523相关的知识,希望对你有一定的参考价值。

Given a list of non-negative numbers and a target integer k, write a function to check if the array has a continuous subarray of size at least 2 that sums up to the multiple of k, that is, sums up to n*k where n is also an integer.

 

 1 class Solution {
 2 public:
 3     bool checkSubarraySum(vector<int>& nums, int k) {
 4         int n=nums.size(),pre=0,sum=0;
 5         unordered_set<int>mod_k;
 6         for(int i=0;i<n;i++)
 7         {
 8             sum+=nums[i];
 9             int mod=k==0?sum:sum%k;
10             if(mod_k.count(mod))
11                 return true;
12             mod_k.insert(pre);
13             pre=mod;
14         }
15         return false;
16     }
17 };

 

以上是关于523的主要内容,如果未能解决你的问题,请参考以下文章

MT523芯片技术分析资料,MT523数据表原理图

使用同余定理 解答 523. 连续的子数组和

523. Continuous Subarray Sum

*RC523读身份证ID

leetcode 523 连续的子数组和

523