Skip to content

Instantly share code, notes, and snippets.

@alexandersazonof
Last active December 2, 2018 12:45
Show Gist options
  • Save alexandersazonof/8d6c2d54e5533f1ea8d7aca0dae7410c to your computer and use it in GitHub Desktop.
Save alexandersazonof/8d6c2d54e5533f1ea8d7aca0dae7410c to your computer and use it in GitHub Desktop.
#Дан целочисленный массив. Осуществить циклический сдвиг элементов массива влево на одну позицию
number_array = [1, 2, 3, 4, 5]
puts "before : #{ array }"
puts "after shift : #{ array.push( array.shift ) }"
@aya-soft
Copy link

Хорошо, только сделай более осмысленный вывод пожалуйста!
Что-то типа: исходный массив, массив после циклического сдвига ...

@aya-soft
Copy link

aya-soft commented Dec 2, 2018

🥇

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment