Skip to content

Instantly share code, notes, and snippets.

from ctypes import *
from timeit import Timer
from random import randint
from collections import namedtuple
class Point(object):
x, y = None, None
def __init__(self, x, y):
self.x, self.y = x, y