Problem 2527. Cull vector elements that contain a specified digit
Given inputs of (1) a row vector and (2) a digit, identify the elements of that vector that contain the digit, remove them, and return the remaining elements.
For example,
digitRemove([1 2 5 13 55 23 15],5) --> [1 2 13 23]
and
digitRemove([3 24 7 9 18 55 67 71],7) --> [3 24 9 18 55]
Solution Stats
Problem Comments
Solution Comments
Show commentsProblem Recent Solvers54
Suggested Problems
-
Project Euler: Problem 1, Multiples of 3 and 5
3168 Solvers
-
Create a vector whose elements depend on the previous element
680 Solvers
-
Multiples of a Number in a Given Range
615 Solvers
-
Side of an equilateral triangle
6141 Solvers
-
construct matrix with identical rows
197 Solvers
More from this Author23
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!