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

Stats:

CreatedAug 27, 2013
PublishedAug 28, 2013
Warriors Trained168102
Total Skips24451
Total Code Submissions525584
Total Times Completed78711
Ruby Completions2872
CoffeeScript Completions217
JavaScript Completions25650
Python Completions31336
Haskell Completions1109
Elixir Completions214
OCaml Completions71
PHP Completions1349
Scala Completions457
Java Completions6659
C++ Completions3671
C# Completions3814
NASM Completions13
C Completions1254
CFML Completions9
Crystal Completions22
Go Completions1041
Rust Completions842
Prolog Completions15
COBOL Completions10
Total Stars6332
% of votes with a positive feedback rating94% of 8414
Total "Very Satisfied" Votes7547
Total "Somewhat Satisfied" Votes742
Total "Not Satisfied" Votes125
Ad
Contributors
  • stevenbarragan Avatar
  • jhoffner Avatar
  • laoris Avatar
  • tko Avatar
  • awesson Avatar
  • firewatcher Avatar
  • 10XL Avatar
  • donaldsebleung Avatar
  • cacr Avatar
  • imjasonmiller Avatar
  • kazk Avatar
  • JohanWiltink Avatar
  • B1ts Avatar
  • Voile Avatar
  • KataSideKick Avatar
  • FArekkusu Avatar
  • bdw429s Avatar
  • _mer_ Avatar
  • monadius Avatar
  • hobovsky Avatar
  • uniapi Avatar
  • tonylicoding Avatar
  • username0 Avatar
  • user8436785 Avatar
  • Trambi Avatar
  • akar-0 Avatar
  • Kacarott Avatar
  • Glinator Avatar
  • KayleighWasTaken Avatar
Ad