class SnowArraySort::Arrays

Public Class Methods

div_and_conquer() click to toggle source
# File lib/SnowArraySort/test_of_merge_array.rb, line 11
def self.div_and_conquer
  a = [1,3,4,6,7,2,2]
  b = MaSort.mergesort a 
  puts b
end
merged_arrays() click to toggle source
# File lib/SnowArraySort/test_of_merge_array.rb, line 17
def self.merged_arrays
  a = [1,3,4,6,7,2,2]
  f = MaSort.merge_sort a
  puts f       
end
new() click to toggle source
# File lib/SnowArraySort/test_of_merge_array.rb, line 7
def initialize

end