view 2014OC/magic.rb @ 3659:46a68fba2f1f

Remove an unnecessary blank line
author HIROSE Yuuji <yuuji@koeki-u.ac.jp>
date Mon, 21 May 2018 10:53:32 +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