4 kyu
Snail
2,872 of 78,711stevenbarragan
Description:
Snail Sort
Given an n x n
array, return the array elements arranged from outermost elements to the middle element, traveling clockwise.
array = [[1,2,3],
[4,5,6],
[7,8,9]]
snail(array) #=> [1,2,3,6,9,8,7,4,5]
For better understanding, please follow the numbers of the next array consecutively:
array = [[1,2,3],
[8,9,4],
[7,6,5]]
snail(array) #=> [1,2,3,4,5,6,7,8,9]
This image will illustrate things more clearly:
NOTE: The idea is not sort the elements from the lowest value to the highest; the idea is to traverse the 2-d array in a clockwise snailshell pattern.
NOTE 2: The 0x0 (empty matrix) is represented as en empty array inside an array [[]]
.
Arrays
Algorithms
Similar Kata:
Stats:
Created | Aug 27, 2013 |
Published | Aug 28, 2013 |
Warriors Trained | 168102 |
Total Skips | 24451 |
Total Code Submissions | 525584 |
Total Times Completed | 78711 |
Ruby Completions | 2872 |
CoffeeScript Completions | 217 |
JavaScript Completions | 25650 |
Python Completions | 31336 |
Haskell Completions | 1109 |
Elixir Completions | 214 |
OCaml Completions | 71 |
PHP Completions | 1349 |
Scala Completions | 457 |
Java Completions | 6659 |
C++ Completions | 3671 |
C# Completions | 3814 |
NASM Completions | 13 |
C Completions | 1254 |
CFML Completions | 9 |
Crystal Completions | 22 |
Go Completions | 1041 |
Rust Completions | 842 |
Prolog Completions | 15 |
COBOL Completions | 10 |
Total Stars | 6332 |
% of votes with a positive feedback rating | 94% of 8414 |
Total "Very Satisfied" Votes | 7547 |
Total "Somewhat Satisfied" Votes | 742 |
Total "Not Satisfied" Votes | 125 |