Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
DepTime = datetime(2016,11,[1;1;1;1;1;1;2;2;2;2;3;3;3;3;3],...
[6;7;7;8;8;9;4;6;8;3;10;5;8;4;2],[22;27;39;43;46;17;41;40;10;8;30;58;21;36;14],0);
ArrTime = datetime(2016,11,[1;1;1;1;1;1;2;2;2;2;3;3;3;3;3],...
[9;10;10;13;11;12;7;9;11;6;13;8;11;7;5],[17;32;09;03;26;46;13;20;19;28;40;38;27;32;24],0);
Destination = categorical([1;2;1;1;1;1;2;1;3;2;1;3;3;1;2],1:3,{'BOS';'NYC';'DC'});
tt = timetable(DepTime,Destination,ArrTime);
y = 5;
assert(isequal(myFun(tt),y))
[Warning: Successfully read the date/time text using the format 'MM/dd/uuuu', but their format is ambiguous and could also be 'dd/MM/uuuu'. Specify a format character vector to
avoid ambiguity.]
[Warning: Successfully read the date/time text using the format 'MM/dd/uuuu', but their format is ambiguous and could also be 'dd/MM/uuuu'. Specify a format character vector to
avoid ambiguity.]
ans =
5
|
2 | Pass |
DepTime = datetime(2016,11,[2;1;1;3],[4;10;7;1],[12;53;32;42],0);
ArrTime = DepTime + hours(3);
Destination = categorical({'DC';'BOS';'BOS';'BOS'});
tt = timetable(DepTime,Destination,ArrTime);
y = 2;
assert(isequal(myFun(tt),y))
[Warning: Successfully read the date/time text using the format 'MM/dd/uuuu', but their format is ambiguous and could also be 'dd/MM/uuuu'. Specify a format character vector to
avoid ambiguity.]
[Warning: Successfully read the date/time text using the format 'MM/dd/uuuu', but their format is ambiguous and could also be 'dd/MM/uuuu'. Specify a format character vector to
avoid ambiguity.]
ans =
2
|
Find the largest value in the 3D matrix
897 Solvers
We love vectorized solutions. Problem 1 : remove the row average.
381 Solvers
Number of digits in an integer
271 Solvers
Create an index-powered vector
232 Solvers
Matlab Basics - Convert a row vector to a column vector
300 Solvers