data generator

This commit is contained in:
John Kerl 2016-02-29 23:48:00 -05:00
parent 09f39610e7
commit aca2499705

8
data/mk5g.rb Executable file
View file

@ -0,0 +1,8 @@
#!/usr/bin/env ruby
5000000000.times do
u = rand < 0.5 ? 0 : 1
v = rand < 0.1 ? 0 : 1
puts "#{u} #{v}"
end
puts "3 5"