view 2014OC/magic.rb @ 2490:1ba23d39d5ad

acc tst()val()2
author ARAKI Tsuyohito <c113007@e.koeki-u.ac.jp>
date Wed, 08 Jul 2015 18:40:18 +0900
parents 44e60de7c395
children
line wrap: on
line source

#!/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

yatex.org