2859. 计算 K 置位下标对应元素的和(01-25每日一题)

链接

力扣(LeetCode)官网 - 全球极客挚爱的技术成长平台

思路 : 

直接模拟

代码

class Solution {
public:
    int get(int n){
        int cnt = 0 ;
        while(n){
            cnt ++ ;
            n = n & (n-1) ;
        }
        return cnt ;
    }
    int sumIndicesWithKSetBits(vector& nums, int k) {
        int n = nums.size() ;
        int ans = 0 ;
        for(int i=0;i

你可能感兴趣的:(leetcode,算法学习,LeetCode)