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]
Check to see if a Sudoku Puzzle is Solved
232 Solvers
631 Solvers
Remove from a 2-D matrix all the rows that contain at least one element less than or equal to 4
123 Solvers
551 Solvers
324 Solvers
Solution 489566
Glad you claimed the lead!