Delete Point.scala

This commit is contained in:
kamoshi 2019-12-11 12:18:53 +01:00 committed by GitHub
parent d2976965d1
commit 7f4f823b0b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,8 +0,0 @@
package day11
case class Point(x: Int, y: Int) {
def up = Point(x, y+1)
def down = Point(x, y-1)
def left = Point(x-1, y)
def right = Point(x+1, y)
}