Skip to content

Instantly share code, notes, and snippets.

View CGjupoulton's full-sized avatar

Julien Poulton CGjupoulton

View GitHub Profile
import kotlin.math.*
import java.util.*
data class Coord(val x: Int, val y: Int) {
constructor(input: Scanner) : this(input.nextInt(), input.nextInt())
operator fun plus(other: Coord): Coord {