Skip to content

Instantly share code, notes, and snippets.

View barnjamin's full-sized avatar

Ben Guidarelli barnjamin

View GitHub Profile
@barnjamin
barnjamin / priority_queue.py
Created May 24, 2022 19:48
Priority Queue
from typing import List, Tuple
import random
class Order:
price: int
size: int
priority: int
def __init__(self, price: int, size: int, priority: int):
self.price=price