Created
November 7, 2018 07:49
-
-
Save filinivan/e28d6cf87464c062780bf5a950ee6e72 to your computer and use it in GitHub Desktop.
Проблема с двумерным массивом.
This file contains hidden or 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
| txt = "123" | |
| arr = Array.new(30) { Array.new(5) } | |
| arr2 = [] | |
| arr2 << txt | |
| arr[0][0] << arr2 | |
| puts arr |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment