11 lines
115 B
Haxe
11 lines
115 B
Haxe
package year2021;
|
|
|
|
typedef Line = {
|
|
x1:Int,
|
|
y1:Int,
|
|
x2:Int,
|
|
y2:Int
|
|
};
|
|
|
|
typedef Point = Array<Int>;
|