Write a function that accepts as input a vector and returns the same vector, but retaining only the first occurrence of an element whenever there is consecutive repetition of this element.
Example:
in -> [1 2 2 2 3 4 4 3 5] out-> [1 2 3 4 3 5]
Check to see if a Sudoku Puzzle is Solved
232 Solvers
Back to basics 11 - Max Integer
611 Solvers
811 Solvers
191 Solvers
Number of digits in an integer
271 Solvers