Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 'this is demo of replacing spaces with stars';
y_correct = 'this*is*demo*of*replacing*spaces*with*stars';
assert(isequal(get_stars(x),y_correct))
ans =
'this*is*demo*of*replacing*spaces*with*stars'
|
2 | Pass |
x = 'check if you can get double stars here';
y_correct = 'check**if**you**can**get*double**stars**here';
assert(isequal(get_stars(x),y_correct))
ans =
'check**if**you**can**get*double**stars**here'
|
3 | Pass |
x = 'Open your mouth,Haaa Haaa Haaaa ';
y_correct = 'Open*your*mouth,Haaa****Haaa***Haaaa***';
assert(isequal(get_stars(x),y_correct))
ans =
'Open*your*mouth,Haaa****Haaa***Haaaa***'
|
Make the vector [1 2 3 4 5 6 7 8 9 10]
35565 Solvers
895 Solvers
229 Solvers
07 - Common functions and indexing 3
317 Solvers
Determine the length of a string of characters
172 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!