Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x={'A' 'A' 'A'};
assert(howmany(x)==1)
x =
'AAA'
only =
1
|
2 | Pass |
x={'A' 'B' 'C'};
assert(howmany(x)==0)
x =
'ABC'
only =
0
|
3 | Pass |
x={'A' 'A' 'A' 'A' 'B'};
assert(howmany(x)==1)
x =
'AAAAB'
only =
1
|
4 | Pass |
x={'A' 'A' 'A' 'B' 'B'};
assert(howmany(x)==2)
x =
'AAABB'
only =
2
|
5 | Pass |
x={'A' 'A' 'A' 'B' 'B' 'B'};
assert(howmany(x)==0)
x =
'AAABBB'
only =
0
|
17222 Solvers
2486 Solvers
556 Solvers
Construct an index vector from two input vectors in vectorized fashion
175 Solvers
Calculate the height of an object dropped from the sky
165 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!