美文网首页Leetcode
Leetcode 357. Count Numbers with

Leetcode 357. Count Numbers with

作者: SnailTyan | 来源:发表于2018-10-22 18:37 被阅读3次

文章作者:Tyan
博客:noahsnail.com  |  CSDN  |  简书

1. Description

Count Numbers with Unique Digits

2. Solution

class Solution {
public:
    int countNumbersWithUniqueDigits(int n) {
        int total = 1;
        for(int i = 0; i < n; i++) {
            int count = 9;
            for(int j = 1; j <= i; j++) {
                count *= (10 - j);
            }
            total += count;
        }
        return total;
    }
};

Reference

  1. https://leetcode.com/problems/count-numbers-with-unique-digits/description/

相关文章

网友评论

    本文标题:Leetcode 357. Count Numbers with

    本文链接:https://www.haomeiwen.com/subject/fvzgzftx.html