package com.bingoabin.algorithm.math;
/**
* @Author: xubin34
* @Date: 2022/4/5 2:19 下午
* @CopyRight: sankuai.com
* @Description:
*/
public class CountPrimeSetBits {
//Leetcode 762. 二进制表示中质数个计算置位
//示例:输入:left = 6, right = 10
// 输出:4
// 解释:
// 6 -> 110 (2 个计算置位,2 是质数)