Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
str1 = 'estion-quay';
str2 = 'question';
str1_f = piglatin2english(str1);
assert(strcmp(str1_f,str2))
e =
'question'
|
2 | Pass |
str1 = 'another-ay';
str2 = 'another';
str1_f = piglatin2english(str1);
assert(strcmp(str1_f,str2))
e =
'another'
|
3 | Pass |
str1 = 'ix-nay';
str2 = 'nix';
str1_f = piglatin2english(str1);
assert(strcmp(str1_f,str2))
e =
'nix'
|
4 | Pass |
str1 = 'another-ay one-ay ites-bay e-thay ust-day';
str2 = 'another one bites the dust';
str1_f = piglatin2english(str1);
assert(strcmp(str1_f,str2))
e =
'another one bites the dust'
|
5 | Pass |
str1 = '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';
str2 = 'how much wood would a woodchuck chuck if a woodchuck could chuck wood';
str1_f = piglatin2english(str1);
assert(strcmp(str1_f,str2))
e =
'how much wood would a woodchuck chuck if a woodchuck could chuck wood'
|
6 | Pass |
str1 = 'eter-pay iper-pay icked-pay a-ay eck-pay of-ay ickle-pay eppers-pay';
str2 = 'peter piper picked a peck of pickle peppers';
str1_f = piglatin2english(str1);
assert(strcmp(str1_f,str2))
e =
'peter piper picked a peck of pickle peppers'
|
7 | Pass |
str1 = 'our-fay ore-scay';
str2 = 'four score';
str1_f = piglatin2english(str1);
assert(strcmp(str1_f,str2))
e =
'four score'
|
272 Solvers
Implement simple rotation cypher
943 Solvers
238 Solvers
Sum of odd numbers in a matrix
311 Solvers
206 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!