Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
s.age = '33'
s.prenom ='aurélien'
str_correct = ['33',10,'aurélien'];
assert(isequal(your_fcn_name(s),str_correct))
s =
struct with fields:
age: '33'
s =
struct with fields:
age: '33'
prenom: 'aurélien'
|
2 | Pass |
s.f1 = 'Sunday';
s.f2 = 'Monday';
s.f3 = 'Tuesday';
s.f4 = 'Wednesday';
s.f5 = 'Thursday';
s.f6 = 'Friday';
s.f7 = 'Saturday';
str_correct = ['Sunday',10,'Monday',10,'Tuesday',10,'Wednesday',10,'Thursday',10,'Friday',10,'Saturday'];
assert(isequal(your_fcn_name(s),str_correct))
|
3 | Pass |
s.age = '42';
s.height = '73.5';
s.weight = '173';
str_correct = ['42',10,'73.5',10,'173'];
assert(isequal(your_fcn_name(s),str_correct))
|
4 | Pass |
s.hair = 'brown';
s.eye = 'green';
s.fav = 'gold';
str_correct = ['brown',10,'green',10,'gold'];
assert(isequal(your_fcn_name(s),str_correct))
|
5 | Pass |
s.first = 'Tom';
s.second = 'Jeff';
s.third = 'Bill';
s.fourth = 'Jerry';
s.fifth = 'Harold';
str_correct = ['Tom',10,'Jeff',10,'Bill',10,'Jerry',10,'Harold'];
assert(isequal(your_fcn_name(s),str_correct))
|
Test if a Number is a Palindrome without using any String Operations
181 Solvers
190 Solvers
Project Euler: Problem 2, Sum of even Fibonacci
835 Solvers
Find the largest value in the 3D matrix
1056 Solvers
Vectorizing, too easy or too hard?
128 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!