diff --git a/Medium/Day11/Problem.txt b/Medium/Day11/Problem.txt new file mode 100644 index 0000000..50a187e --- /dev/null +++ b/Medium/Day11/Problem.txt @@ -0,0 +1,6 @@ +Imagine we have a range of numbers from n to m. How many of these numbers have unique digits in each position? +In other words, no two digits next to each other can be the same. + +Constraints + +0 <= n <= m <= 10^18 \ No newline at end of file diff --git a/Medium/Day11/Sample.txt b/Medium/Day11/Sample.txt new file mode 100644 index 0000000..8428e2e --- /dev/null +++ b/Medium/Day11/Sample.txt @@ -0,0 +1,5 @@ +Input: +123 321 + +Output: +171 \ No newline at end of file diff --git a/Medium/Day11/Solution.cpp b/Medium/Day11/Solution.cpp new file mode 100644 index 0000000..89bcc24 --- /dev/null +++ b/Medium/Day11/Solution.cpp @@ -0,0 +1 @@ +// Write Your code here \ No newline at end of file