misc_rbtools/algorithms/algorithms.rb
2019-02-06 02:02:28 -06:00

9 lines
236 B
Ruby

# im going to learn algorithms by makin a giant module that covers a different algorithm.
# i will link the resources i am learning the algorithm from in my code.
module Algorithms
class Sorting
def selection
end
end
end