Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x = ['TIPE'
'YECV'
'LSRA'
'WOTU'];
y = 'RACIEST';
assert(isequal(boggle_checker(x,y),true))
ans =
1
|
2 | Pass |
%%
x = ['TIPE'
'YECV'
'LSRA'
'WOTU'];
y = 'RACIESTS';
assert(isequal(boggle_checker(x,y),false))
ans =
0
|
3 | Pass |
%%
x = ['TIPE'
'YECV'
'LSRA'
'WOTU'];
y = 'RACIESTW';
assert(isequal(boggle_checker(x,y),false))
ans =
0
|
4 | Pass |
%%
x = ['TIPE'
'YECV'
'LSRA'
'WOTU'];
y = 'AUTOLYTIC';
assert(isequal(boggle_checker(x,y),true))
ans =
1
|
5 | Pass |
%%
x = ['TIPE'
'YECV'
'LSRA'
'WOTU'];
y = 'RESTAR';
assert(isequal(boggle_checker(x,y),false))
ans =
0
|
6 | Pass |
%%
x = ['OCEW'
'LRIR'
'GYSI'
'KREM'];
y = 'SIRI';
assert(isequal(boggle_checker(x,y),true))
ans =
1
|
7 | Pass |
%%
x = ['OCEW'
'LRIR'
'GYSI'
'KREM'];
y = 'SIRIM';
assert(isequal(boggle_checker(x,y),true))
ans =
1
|
1836 Solvers
Back to basics 6 - Column Vector
908 Solvers
284 Solvers
Find a subset that divides the vector into equal halves
332 Solvers
Generate N equally spaced intervals between -L and L
563 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!