commandline session $cat colors Asian Paints. Chapel grey — hall– color family : brown 8441 tree bark — kitchen. — color family : brown 8566 oyster grey — both bedrooms — color family: brown 8473 $ $cat colors Asian Paints. Chapel grey — hall– color family : brown 8441 tree bark — kitchen. — color …
Daily Archives: March 30, 2014
BUBBLE SORT USING RUBY. GRAPH FOR ARRAY SIZE 100
Sun Mar 30 17:49:05 IST 2014 real 0m0.398s user 0m0.032s sys 0m0.008s real 0m0.019s user 0m0.016s sys 0m0.000s real 0m0.023s user 0m0.020s sys 0m0.000s real 0m0.024s user 0m0.020s sys 0m0.000s real 0m0.024s user 0m0.020s sys 0m0.000s
BUBBLE SORT USING RUBY ARRAY SIZE 100
#!/usr/bin/ruby =begin bubble sort in php by detour@metalshell.com Generate random numbers then sort them. Ported to Ruby by Jeffrin Jose T Licensed : GPL =end array_size = 100 x = 0 y = 0 z = 0 hold = 0 ran = Array.new(array_size) while x < array_size ran[x] = rand(1..1000) x +=1 end x = …