misc_rbtools/algorithms/lib/algorithms.rb

9 lines
180 B
Ruby
Raw Normal View History

2019-02-06 23:45:18 -06:00
require "algorithms/version"
require "algorithms/sorting"
2019-05-06 23:41:08 -05:00
require "algorithms/boolean_algebra"
2019-02-06 23:45:18 -06:00
module Algorithms
class Error < StandardError; end
# Your code goes here...
end