Problem 59771. Leader
An element of a list is called a "leader" if every element to its right (and not just the one immediately to its right) is strictly smaller than it. By this definition, the last element of the list is automatically a leader.
Example: list_leaders([42, 7, 12, 5, 2, 9]) returns [42, 12, 9] (because 42 > all other numbers to its right, 7 no, 12 > all numbers to its right, etc.)
Complete the function list_leaders(L) which returns the list containing only the leader elements (in the same order as in L).
Solution Stats
Solution Comments
Show commentsProblem Recent Solvers12
Suggested Problems
-
The Goldbach Conjecture, Part 2
2367 Solvers
-
Project Euler: Problem 5, Smallest multiple
1503 Solvers
-
What is Sum Of all elements of Matrix
419 Solvers
-
Matlab Basics - Convert a row vector to a column vector
640 Solvers
-
232 Solvers
More from this Author53
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!