Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
str = 'b';n=5
y_correct = 'bbbbb';
assert(isequal(duplicate_char(str,n),y_correct))
n =
5
|
2 | Pass |
%%
str = 's';n=1
y_correct = 's';
assert(isequal(duplicate_char(str,n),y_correct))
n =
1
|
3 | Pass |
%%
str = 'b';n=10
y_correct = 'bbbbbbbbbb';
assert(isequal(duplicate_char(str,n),y_correct))
n =
10
|
4 | Pass |
%%
str = 'b';n=0
y_correct = '';
assert(isequal(duplicate_char(str,n),y_correct))
n =
0
|
5 | Pass |
%%
str = '?';n=2
y_correct = '??';
assert(isequal(duplicate_char(str,n),y_correct))
n =
2
|
Test if two numbers have the same digits
187 Solvers
331 Solvers
Area of an equilateral triangle
2760 Solvers
Find the Nth Root of a Given Number
187 Solvers
Create sequnce 1 4 9 16 25.........
190 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!