Test | Status | Code Input and Output |
---|---|---|
1 | Fail |
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 | Fail |
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 | Fail |
x = 'Open your mouth,Haaa Haaa Haaaa ';
y_correct = 'Open*your*mouth,Haaa****Haaa***Haaaa***';
assert(isequal(get_stars(x),y_correct))
|
Replace NaNs with the number that appears to its left in the row.
1712 Solvers
631 Solvers
106 Solvers
126 Solvers
Calculate square and cube of number
169 Solvers