Leetcode 201. 數字範圍按位與

class Solution { public: int rangeBitwiseAnd(int m, int n) { int t=m&n,ans=0; n-=m; while(t){ int k=t&-t; if(k>=n) ans+=k; t-=k;
相關文章
相關標籤/搜索