fcds-lab-2015/c_sequential/bucketsort/input/uniform.rb
Jörg Thalheim 3c267146e4 add not working input for bucketsort impl.
The following input contains uniform distributed character, but breaks the
reference implementation (because buckets overflow).
So the question is, what uniform distribution means in this context.
2015-04-30 10:32:01 +02:00

14 lines
216 B
Ruby

#!/usr/bin/env ruby
puts 94 * 94
('!'..'R').each do |c1|
('!'..'~').each do |c2|
print c2 * 4, c1 * 3, "\n"
end
end
('S'..'~').each do |c1|
('!'..'~').each do |c2|
print c1 * 3, c2 * 4, "\n"
end
end