Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x = 10;
y_correct = 2640;
assert(isequal(euler006(x),y_correct))
x =
1 2 3 4 5 6 7 8 9 10
ans =
2640
|
2 | Pass |
%%
x = 20;
y_correct = 41230;
assert(isequal(euler006(x),y_correct))
x =
Columns 1 through 16
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
Columns 17 through 20
17 18 19 20
ans =
41230
|
3 | Pass |
%%
x = 200;
y_correct = 401323300;
assert(isequal(euler006(x),y_correct))
x =
Columns 1 through 16
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
Columns 17 through 32
17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
Columns 33 through 48
33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
Columns 49 through 64
49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64
Columns 65 through 80
65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80
Columns 81 through 96
81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96
Columns 97 through 112
97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112
Columns 113 through 128
113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128
Columns 129 through 144
129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144
Columns 145 through 160
145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160
Columns 161 through 176
161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176
Columns 177 through 192
177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192
Columns 193 through 200
193 194 195 196 197 198 199 200
ans =
401323300
|
1962 Solvers
Renaming a field in a structure array
731 Solvers
4329 Solvers
232 Solvers
271 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!