掘友等级
获得徽章 0
想着连续刷力扣的每日算法题的,这都中断好几天了
LeetCode每日一题
2520. 统计能整除数字的位数public class Solution {
public int CountDigits(int num) {
int temp = num;
int count = 0;
while (temp != 0)
{
if (num % (temp % 10) == 0)
count++;
temp /= 10;
}
return count;
}
}
#1024一起掘金# 有道云笔记限制同步的客户端数量了,白嫖还长久么
#1024一起掘金# breaking changes是应该翻译成重大更改,还是破坏性更改?
周五打卡,工作从一个C#的switch开始:
task switch
{
"有一个BUG" => "处理半小时",
"有一个功能" => "处理一小时",
"发布测试" => "处理两小时",
_ => "摸鱼"
}
下一页