Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
D = '5-Jan-2018';
y_correct = 1;
assert(isequal(Fri(D),y_correct))
|
2 | Pass |
D = '09/09/2019';
y_correct = 0;
assert(isequal(Fri(D),y_correct))
[Warning: Successfully converted the text to datetime using the format 'MM/dd/uuuu', but the format is ambiguous and could also be 'dd/MM/uuuu'. To create datetimes from text with
a specific format call:
datetime(textinput,'InputFormat',infmt)
]
[> In guessFormat (line 109)
In datetime (line 643)
In Fri (line 3)
In ScoringEngineTestPoint2 (line 3)
In solutionTest (line 5)]
|
3 | Pass |
D = '2000-01-01';
y_correct = 0;
assert(isequal(Fri(D),y_correct))
|
4 | Pass |
D = '2020-12-25';
y_correct = 1;
assert(isequal(Fri(D),y_correct))
|
Return the 3n+1 sequence for n
6169 Solvers
3376 Solvers
432 Solvers
413 Solvers
1160 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!