Sha256: 91d41f875a28d4c632b5f81cbd43b7d71500f6be78c167e71ff1fd1a59e00be0
Contents?: true
Size: 1.4 KB
Versions: 34
Compression:
Stored size: 1.4 KB
Contents
# Spiral Matrix Given the size, return a square matrix of numbers in spiral order. The matrix should be filled with natural numbers, starting from 1 in the top-left corner, increasing in an inward, clockwise spiral order, like these examples: ###### Spiral matrix of size 3 ```text 1 2 3 8 9 4 7 6 5 ``` ###### Spiral matrix of size 4 ```text 1 2 3 4 12 13 14 5 11 16 15 6 10 9 8 7 ``` ## Running tests Execute the tests with: ```bash $ elixir spiral_matrix_test.exs ``` ### Pending tests In the test suites, all but the first test have been skipped. Once you get a test passing, you can unskip the next one by commenting out the relevant `@tag :pending` with a `#` symbol. For example: ```elixir # @tag :pending test "shouting" do assert Bob.hey("WATCH OUT!") == "Whoa, chill out!" end ``` Or, you can enable all the tests by commenting out the `ExUnit.configure` line in the test suite. ```elixir # ExUnit.configure exclude: :pending, trace: true ``` For more detailed information about the Elixir track, please see the [help page](http://exercism.io/languages/elixir). ## Source Reddit r/dailyprogrammer challenge #320 [Easy] Spiral Ascension. [spiral ascension](https://www.reddit.com/r/dailyprogrammer/comments/6i60lr/20170619_challenge_320_easy_spiral_ascension/) ## Submitting Incomplete Solutions It's possible to submit an incomplete solution so you can see how others have completed the exercise.
Version data entries
34 entries across 34 versions & 1 rubygems