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

47.33% Correct | 52.67% Incorrect
Last Solution submitted on Feb 21, 2024

Problem Comments

Solution Comments

Show comments

Problem Recent Solvers60

Suggested Problems

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!