Skip to content

Instantly share code, notes, and snippets.

@conwuegb
conwuegb / loadbalancer.py
Last active July 28, 2024 13:22
A coding exercise done in python (link to prompt in comments)
import heapq
from dataclasses import dataclass
class LoadBalancer:
def __init__(self, hosts) -> None:
if not hosts:
# throw an error because there are no hosts at all
raise ValueError
self.hosts = hosts