Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = [1 2 2 2 3 3 7 7 93]
y_correct = [2 3 7 1 93];
assert(isequal(popularity(x),y_correct))
x =
1 2 2 2 3 3 7 7 93
m =
0
lx =
9
lu =
5
h =
Histogram with properties:
Data: [1 2 2 2 3 3 7 7 93]
Values: [1×93 double]
NumBins: 93
BinEdges: [1×94 double]
BinWidth: 1
BinLimits: [1 94]
Normalization: 'count'
FaceColor: 'auto'
EdgeColor: [0 0 0]
Show all properties
v =
Columns 1 through 29
1 3 2 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Columns 30 through 58
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Columns 59 through 87
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Columns 88 through 93
0 0 0 0 0 1
c =
Columns 1 through 29
3 2 2 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Columns 30 through 58
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Columns 59 through 87
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Columns 88 through 93
0 0 0 0 0 0
i =
Columns 1 through 29
2 3 7 1 93 4 5 6 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
Columns 30 through 58
29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
Columns 59 through 87
58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86
Columns 88 through 93
87 88 89 90 91 92
y =
2 3 7 1 93
|
2 | Pass |
x = [-1 19 20 -1 -1 87 19 34 19 -1 21 87 20 10 20 34 19 -1];
y_correct = [-1 19 20 34 87 10 21];
assert(isequal(popularity(x),y_correct))
m =
2
lx =
18
lu =
7
h =
Histogram with properties:
Data: [-1 19 20 -1 -1 87 19 34 19 -1 21 87 20 10 20 34 19 -1]
Values: [1×89 double]
NumBins: 89
BinEdges: [1×90 double]
BinWidth: 1
BinLimits: [-1 88]
Normalization: 'count'
FaceColor: 'auto'
EdgeColor: [0 0 0]
Show all properties
v =
Columns 1 through 29
5 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 4 3 1 0 0 0 0 0 0
Columns 30 through 58
0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Columns 59 through 87
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Columns 88 through 89
0 2
c =
Columns 1 through 29
5 4 3 2 2 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Columns 30 through 58
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Columns 59 through 87
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Columns 88 through 89
0 0
i =
Columns 1 through 29
1 21 22 36 89 12 23 2 3 4 5 6 7 8 9 10 11 13 14 15 16 17 18 19 20 24 25 26 27
Columns 30 through 58
28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
Columns 59 through 87
58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86
Columns 88 through 89
87 88
y =
-1 19 20 34 87 10 21
|
Find the sum of all the numbers of the input vector
25617 Solvers
395 Solvers
Back to basics 17 - white space
209 Solvers
Solve the set of simultaneous linear equations
172 Solvers
Return elements unique to either input
475 Solvers