This problem series invites you to solve two simple problems related to the integer NUMBER FIVE, in order to celebrate Cody's 5th birthday.
In this problem, let's determine the position (index) of the first occurrence of 5 along the first non-singleton dimension of an input array.
E.g.,
- If the input is a vector, return the index of the first occurrence of 5.
x = [1 2 5 3 5]; y = 3;
- If the input is a matrix, return the index of the first occurrence of 5 in each column. If 5 is not found, simply return 0;
% Input x is a matrix
x = [1 2 5
5 9 1
5 6 5];
% Output y y = [2 0 1];
Next problem in this series: The Top 5 Primes
Solution Stats
Problem Comments
1 Comment
Solution Comments
Show comments
Loading...
Problem Recent Solvers434
Suggested Problems
-
Find relatively common elements in matrix rows
2151 Solvers
-
Project Euler: Problem 6, Natural numbers, squares and sums.
2540 Solvers
-
Project Euler: Problem 7, Nth prime
1753 Solvers
-
Arrange Vector in descending order
13388 Solvers
-
Who knows the last digit of pi?
691 Solvers
More from this Author28
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
Oof that was tricky but enjoyable. Nested for loops were helpful