Add all the integers from 1 to n in which the digit m does not appear. m will always be a single digit integer from 0 to 9.
no_digit_sum(10,1) = 44
because 1 and 10 are excluded from the sum and
sum(2:9) = 44
Solution Stats
Problem Comments
2 Comments
Solution Comments
Show comments
Loading...
Problem Recent Solvers2369
Suggested Problems
-
Sum all integers from 1 to 2^n
17851 Solvers
-
Project Euler: Problem 2, Sum of even Fibonacci
2890 Solvers
-
Convert a numerical matrix into a cell array of strings
2512 Solvers
-
Multiples of a Number in a Given Range
944 Solvers
-
2195 Solvers
More from this Author96
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
simple but fun :)
My solution looks complicated but runs very fast, trust me :)