- You will be provided a string (s = 'string1_')
- a starting point (num1 = 6) (always bigger than or equal to zero)
- and n (n = 3) (always bigger than or equal to 1)
You will return following in sequence;
{'string1_6'
'string1_7'
'string1_8'}
You can not use for or while loops
Solution Stats
Problem Comments
1 Comment
Solution Comments
Show comments
Loading...
Problem Recent Solvers48
Suggested Problems
-
Return the largest number that is adjacent to a zero
5527 Solvers
-
1835 Solvers
-
We love vectorized solutions. Problem 1 : remove the row average.
894 Solvers
-
560 Solvers
-
Replace every 3rd element in a vector with 4
267 Solvers
More from this Author92
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
Your first test is too strict: it trips when you invoke arrayfun(..., "UniformOutput", false).