tasks a-s
This commit is contained in:
parent
47bf37c096
commit
b83f433714
12433 changed files with 156208 additions and 123 deletions
4
Task/Pick-random-element/Ruby/pick-random-element-1.rb
Normal file
4
Task/Pick-random-element/Ruby/pick-random-element-1.rb
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
irb(main):001:0> %w(north east south west).sample
|
||||
=> "west"
|
||||
irb(main):002:0> (1..100).to_a.sample(2)
|
||||
=> [17, 79]
|
||||
2
Task/Pick-random-element/Ruby/pick-random-element-2.rb
Normal file
2
Task/Pick-random-element/Ruby/pick-random-element-2.rb
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
irb(main):001:0> %w(north east south west).choice
|
||||
=> "south"
|
||||
Loading…
Add table
Add a link
Reference in a new issue