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))
|
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))
|
3 | Pass |
x = 'Open your mouth,Haaa Haaa Haaaa ';
y_correct = 'Open*your*mouth,Haaa****Haaa***Haaaa***';
assert(isequal(get_stars(x),y_correct))
|
3074 Solvers
4106 Solvers
How to find the position of an element in a vector without using the find function
2477 Solvers
284 Solvers
Vector of numbers divisible by 3
126 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!