149.go 170 B

12345678910111213141516
  1. package main
  2. /**
  3. * Definition for a point.
  4. * type Point struct {
  5. * X int
  6. * Y int
  7. * }
  8. */
  9. func maxPoints(points []Point) int {
  10. return 0
  11. }
  12. func main() {
  13. }