module GameSetMatch

Constants

VERSION

Public Class Methods

match(set1, set2) click to toggle source
# File lib/game_set_match.rb, line 5
def self.match(set1, set2)
      raise ArgumentError unless set1 && set2 
      Matcher.new(set1, set2).match
end