191. Number of 1 Bits
这个题做过的,参考 Leetcode_14 天算法入门_day13。
直接调用库函数,再做一次。1
2
3
4
5
6class Solution {
public:
int hammingWeight(uint32_t n) {
return __builtin_popcount(n);
}
};
1281. Subtract the Product and Sum of Digits of an Integer
Analysis
第一次在 Leetcode 上见到数位拆分的题。不是难题,直接做就行了。
Code
1 | class Solution { |
Summary
今天这两个题太简单了...还好有其他的学习计划。