-
-
Notifications
You must be signed in to change notification settings - Fork 157
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a06e645
commit 736d81c
Showing
1 changed file
with
35 additions
and
50 deletions.
There are no files selected for viewing
85 changes: 35 additions & 50 deletions
85
exercises/practice/spiral-matrix/test/spiral_matrix_test.clj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,58 +1,43 @@ | ||
(ns spiral-matrix-test | ||
(:require [clojure.test :refer [deftest is testing]] | ||
[spiral-matrix :refer [spiral]])) | ||
spiral-matrix)) | ||
|
||
(deftest spiral-matrix-of-0 | ||
(testing "spiral matrix of 0" | ||
(is (= (spiral 0) | ||
'())))) | ||
(deftest test-8f584201-b446-4bc9-b132-811c8edd9040 | ||
(testing "Empty spiral" | ||
(is (= [] | ||
(spiral-matrix/spiral 0))))) | ||
|
||
(deftest spiral-matrix-of-1 | ||
(testing "spiral matrix of 1" | ||
(is (= (spiral 1) | ||
'((1)))))) | ||
(deftest test-e40ae5f3-e2c9-4639-8116-8a119d632ab2 | ||
(testing "Trivial spiral" | ||
(is (= [[1]] | ||
(spiral-matrix/spiral 1))))) | ||
|
||
(deftest spiral-matrix-of-2 | ||
(testing "spiral matrix of 2" | ||
(is (= (spiral 2) | ||
'((1 2) | ||
(4 3)))))) | ||
(deftest test-cf05e42d-eb78-4098-a36e-cdaf0991bc48 | ||
(testing "Spiral of size 2" | ||
(is (= [[1 2] | ||
[4 3]] | ||
(spiral-matrix/spiral 2))))) | ||
|
||
(deftest spiral-matrix-of-3 | ||
(testing "spiral matrix of 3" | ||
(is (= (spiral 3) | ||
'((1 2 3) | ||
(8 9 4) | ||
(7 6 5)))))) | ||
(deftest test-1c475667-c896-4c23-82e2-e033929de939 | ||
(testing "Spiral of size 3" | ||
(is (= [[1 2 3] | ||
[8 9 4] | ||
[7 6 5]] | ||
(spiral-matrix/spiral 3))))) | ||
|
||
(deftest spiral-matrix-of-4 | ||
(testing "spiral matrix of 4" | ||
(is (= (spiral 4) | ||
'((1 2 3 4) | ||
(12 13 14 5) | ||
(11 16 15 6) | ||
(10 9 8 7)))))) | ||
(deftest test-05ccbc48-d891-44f5-9137-f4ce462a759d | ||
(testing "Spiral of size 4" | ||
(is (= [[1 2 3 4] | ||
[12 13 14 5] | ||
[11 16 15 6] | ||
[10 9 8 7]] | ||
(spiral-matrix/spiral 4))))) | ||
|
||
(deftest spiral-matrix-of-20 | ||
(testing "spiral matrix of 20" | ||
(is (= (spiral 20) | ||
'((1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20) | ||
(76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 21) | ||
(75 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 95 22) | ||
(74 143 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 161 96 23) | ||
(73 142 203 256 257 258 259 260 261 262 263 264 265 266 267 268 219 162 97 24) | ||
(72 141 202 255 300 301 302 303 304 305 306 307 308 309 310 269 220 163 98 25) | ||
(71 140 201 254 299 336 337 338 339 340 341 342 343 344 311 270 221 164 99 26) | ||
(70 139 200 253 298 335 364 365 366 367 368 369 370 345 312 271 222 165 100 27) | ||
(69 138 199 252 297 334 363 384 385 386 387 388 371 346 313 272 223 166 101 28) | ||
(68 137 198 251 296 333 362 383 396 397 398 389 372 347 314 273 224 167 102 29) | ||
(67 136 197 250 295 332 361 382 395 400 399 390 373 348 315 274 225 168 103 30) | ||
(66 135 196 249 294 331 360 381 394 393 392 391 374 349 316 275 226 169 104 31) | ||
(65 134 195 248 293 330 359 380 379 378 377 376 375 350 317 276 227 170 105 32) | ||
(64 133 194 247 292 329 358 357 356 355 354 353 352 351 318 277 228 171 106 33) | ||
(63 132 193 246 291 328 327 326 325 324 323 322 321 320 319 278 229 172 107 34) | ||
(62 131 192 245 290 289 288 287 286 285 284 283 282 281 280 279 230 173 108 35) | ||
(61 130 191 244 243 242 241 240 239 238 237 236 235 234 233 232 231 174 109 36) | ||
(60 129 190 189 188 187 186 185 184 183 182 181 180 179 178 177 176 175 110 37) | ||
(59 128 127 126 125 124 123 122 121 120 119 118 117 116 115 114 113 112 111 38) | ||
(58 57 56 55 54 53 52 51 50 49 48 47 46 45 44 43 42 41 40 39)))))) | ||
(deftest test-f4d2165b-1738-4e0c-bed0-c459045ae50d | ||
(testing "Spiral of size 5" | ||
(is (= [[1 2 3 4 5] | ||
[16 17 18 19 6] | ||
[15 24 25 20 7] | ||
[14 23 22 21 8] | ||
[13 12 11 10 9]] | ||
(spiral-matrix/spiral 5))))) |