Skip to content

Instantly share code, notes, and snippets.

@docent666
docent666 / Connector.scala
Created February 22, 2013 19:58
Union find exercise - scala dojo 21st of Feb 2013
package com.bulba.unionfind
trait CityMap {
def isConnected(from: Point, to: Point): Boolean
}
case class Point(name: String) {
def - (to: Point) = (this, to)
}