Leetcode 233 從1到n整數中1出現的次數

從1到n整數中1出現的次數 Leetcode 233 劍指offer33git class Solution { public: int countDigitOne(int n) { int ones = 0; for (long long m = 1; m <= n; m *= 10) ones += (n/m + 8) / 10 * m + (n
相關文章
相關標籤/搜索