diptangsu / Sorting-Algorithms

Missing top-level documentation comment RB-ST1031
Documentation
Minor
3 years ago4 years old
Missing top-level class documentation comment.
 8puts 'Your unsorted numbers'
 9p array
10
11class MergeSort12  class << self
13    def sort(array)
14      return array if array.size <= 1
Missing top-level class documentation comment.
 8puts 'Your unsorted numbers'
 9p array
10
11class BubbleSort12  class << self
13    def sort(array)
14      return array if array.size <= 1