This solution is outdated. To rescore this solution, sign in.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x = 'purusa';
y_correct = 'u';
assert(isequal(frequent_character(x),y_correct))
k =
1
c =
1
k =
2 4
c =
1 2
k =
3
c =
1 2 1
k =
2 4
c =
1 2 1 2
k =
5
c =
1 2 1 2 1
k =
6
c =
1 2 1 2 1 1
m =
2
ind =
2
y =
u
|
2 | Pass |
%%
x = 'rama';
y_correct = 'a';
assert(isequal(frequent_character(x),y_correct))
k =
1
c =
1
k =
2 4
c =
1 2
k =
3
c =
1 2 1
k =
2 4
c =
1 2 1 2
m =
2
ind =
2
y =
a
|
312 Solvers
Create a Multiplication table matrix...
283 Solvers
Convert Two Character String into a Binary Vector
102 Solvers
Count decimal digits of a number
176 Solvers
270 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!