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))
y =
'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))
y =
'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))
y =
'Open*your*mouth,Haaa****Haaa***Haaaa***'
|
Return the largest number that is adjacent to a zero
3749 Solvers
829 Solvers
Back to basics 21 - Matrix replicating
1052 Solvers
Solve the set of simultaneous linear equations
273 Solvers
Return elements unique to either input
550 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!