Problem 838. Check if number exists in vector

Return 1 if number a exists in vector b otherwise return 0.

a = 3;
b = [1,2,4];

Returns 0.

a = 3;
b = [1,2,3];

Returns 1.

Solution Stats

50.15% Correct | 49.85% Incorrect
Last Solution submitted on Mar 19, 2024

Problem Comments

Solution Comments

Show comments

Problem Recent Solvers10414

Suggested Problems

Problem Tags

Community Treasure Hunt

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

Start Hunting!