Problem 45863. Generate a vector which contains a pyramid pattern (★★★★)
Generate a vector that contains terms that follows a pyramid pattern up to the nth row:
1
2 2
3 3 3
4 4 4 4
....
So if n = 3, then return the vector
[1 2 2 3 3 3]
And if n = 5, then return
[1 2 2 3 3 3 4 4 4 4 5 5 5 5 5]
Avoid using for/while loops.
Solution Stats
Problem Comments
-
1 Comment
Christian Schröder
on 22 Oct 2022
The test suite should be a little less zealous when looking for "for" loops, ideally --- it also trips up on arrayfun(..., "UniformOutput", false), for instance.
Solution Comments
Show commentsProblem Recent Solvers62
Suggested Problems
-
Find the peak 3n+1 sequence value
2498 Solvers
-
Number of 1s in the Binary Representation of a Number
444 Solvers
-
464 Solvers
-
104 Solvers
-
Doubling elements in a vector (★★)
93 Solvers
More from this Author52
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!