Problem 55140. Draw 'W'

For any given n, return a matrix of height n and width 4n-3 containing a W of ones.
Example:
n=2
ans=
[1 0 1 0 1
0 1 0 1 0]
n=3
ans=
[1 0 0 0 1 0 0 0 1
0 1 0 1 0 1 0 1 0
0 0 1 0 0 0 1 0 0]

Solution Stats

57.14% Correct | 42.86% Incorrect
Last Solution submitted on May 04, 2024

Problem Comments

Solution Comments

Show comments

Problem Recent Solvers32

Suggested Problems

Problem Tags

Community Treasure Hunt

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

Start Hunting!