Problem 1759. Find same numbers touching each other...

So the goal here is to find any number that is equal to its immediate neighbors and mark it true. Here is some examples:

x = [2 2 3 4 3 4 6 9 9]
y = [1 1 0 0 0 0 0 1 1]

or

x = [2 2 2 2 2 9]
y = [1 1 1 1 1 0]

Have fun!

Solution Stats

62.16% Correct | 37.84% Incorrect
Last Solution submitted on Aug 02, 2023

Solution Comments

Show comments

Problem Recent Solvers53

Suggested Problems

More from this Author17

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!