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 =
0×0 empty char array
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict.]
[> In unix (line 32)
In get_stars (line 3)
In ScoringEngineTestPoint1 (line 3)
In solutionTest (line 3)]
|
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 =
0×0 empty char array
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict.]
[> In unix (line 32)
In get_stars (line 3)
In ScoringEngineTestPoint2 (line 3)
In solutionTest (line 5)]
|
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 =
0×0 empty char array
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict.]
[> In unix (line 32)
In get_stars (line 3)
In ScoringEngineTestPoint3 (line 3)
In solutionTest (line 7)]
|
2810 Solvers
620 Solvers
376 Solvers
Vector of numbers divisible by 3
126 Solvers
273 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!