module Algorithmable::UnionFind

Public Class Methods

new(quantity) click to toggle source
# File lib/algorithmable/union_find.rb, line 3
def self.new(quantity)
  Impl.new(quantity)
end