Problem 44380. ASCII Birthday Cake
Given an age and a name, give draw an ASCII birthday cake. For example, given the name "CODY" and the age 5, return a string with the following (no trailing spaces)
6 6 6 6 6 | | | | | __|_|_|_|_|__ { } { } { CODY } { } {_____________}
This uses the string datatype, not a char array.
Solution Stats
Problem Comments
-
4 Comments
Maybe it comes from the new matlab strings introduced only recently in R2017a. You can notices them by the 'string' constructor and the double quotes in the test cases.
String concatenation and some other things seem to work differently for them, than for the good old char arrays.
maybe you right. the question is how i can remove it after or during the construction?
I found the difference and add a patch (cost me 50 in length)
Solution Comments
Show commentsProblem Recent Solvers222
Suggested Problems
-
Find state names that end with the letter A
1186 Solvers
-
Remove the polynomials that have positive real elements of their roots.
1703 Solvers
-
4512 Solvers
-
Check to see if a Sudoku Puzzle is Solved
324 Solvers
-
5451 Solvers
More from this Author56
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!