This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.io.File | |
import java.util.* | |
import java.util.concurrent.atomic.AtomicInteger | |
data class Coordinate(val x: Int, val y: Int) | |
data class Point(val label: Int, val coordinate: Coordinate) | |
data class area(val associatedToPoint: Point, val size: Int = 0) | |
var seqId = AtomicInteger(1) |