Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
str1 = 'question';
str2 = 'estion-quay';
str1_f = english2piglatin(str1);
assert(strcmp(str1_f,str2))
actWord =
'question'
|
2 | Pass |
str1 = 'another';
str2 = 'another-ay';
str1_f = english2piglatin(str1);
assert(strcmp(str1_f,str2))
actWord =
'another'
|
3 | Pass |
str1 = 'nix';
str2 = 'ix-nay';
str1_f = english2piglatin(str1);
assert(strcmp(str1_f,str2))
actWord =
'nix'
|
4 | Pass |
str1 = 'another one bites the dust';
str2 = 'another-ay one-ay ites-bay e-thay ust-day';
str1_f = english2piglatin(str1);
assert(strcmp(str1_f,str2))
actWord =
'another'
actWord =
'one'
actWord =
'bites'
actWord =
'the'
actWord =
'dust'
|
5 | Pass |
str1 = 'how much wood would a woodchuck chuck if a woodchuck could chuck wood';
str2 = 'ow-hay uch-may ood-way ould-way a-ay oodchuck-way uck-chay if-ay a-ay oodchuck-way ould-cay uck-chay ood-way';
str1_f = english2piglatin(str1);
assert(strcmp(str1_f,str2))
actWord =
'how'
actWord =
'much'
actWord =
'wood'
actWord =
'would'
actWord =
'a'
actWord =
'woodchuck'
actWord =
'chuck'
actWord =
'if'
actWord =
'a'
actWord =
'woodchuck'
actWord =
'could'
actWord =
'chuck'
actWord =
'wood'
|
6 | Pass |
str1 = 'peter piper picked a peck of pickle peppers';
str2 = 'eter-pay iper-pay icked-pay a-ay eck-pay of-ay ickle-pay eppers-pay';
str1_f = english2piglatin(str1);
assert(strcmp(str1_f,str2))
actWord =
'peter'
actWord =
'piper'
actWord =
'picked'
actWord =
'a'
actWord =
'peck'
actWord =
'of'
actWord =
'pickle'
actWord =
'peppers'
|
7 | Pass |
str1 = 'four score';
str2 = 'our-fay ore-scay';
str1_f = english2piglatin(str1);
assert(strcmp(str1_f,str2))
actWord =
'four'
actWord =
'score'
|
2401 Solvers
Check to see if a Sudoku Puzzle is Solved
278 Solvers
3967 Solvers
75 Solvers
1424 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!