Newer
Older
skip-web / oasis2015 / magic.rb
@ARAKI Tsuyohito ARAKI Tsuyohito on 30 Jun 2015 186 bytes oasis2015 added
#!/usr/bin/env ruby
# -*- coding: utf-8 -*-

def magic()
  srand(123456789)
  hoge = Array.new
  while hoge.length < 100
    hoge << rand(1000000)
    hoge.uniq!
  end
  return hoge
end