Skip to content

Latest commit

 

History

History
12 lines (7 loc) · 380 Bytes

File metadata and controls

12 lines (7 loc) · 380 Bytes

215.Count Numbers with Unique Digits

Description

Given a non-negative integer n, count all numbers with unique digits, x, where 0 ≤ x < 10n.

Example: Given n = 2, return 91. (The answer should be the total numbers in the range of 0 ≤ x < 100, excluding [11,22,33,44,55,66,77,88,99])

From

LeetCode