Skip to content

Instantly share code, notes, and snippets.

View koppolujayanth's full-sized avatar

Jayanth Koppolu koppolujayanth

View GitHub Profile
@koppolujayanth
koppolujayanth / angelica_challenge.py
Last active April 29, 2026 20:57
Angelica Polkadot Score Challenge
import re
def computePolkadotScore(art):
lines = art.splitlines()
excluded = set("'`,- ")
lips_line = next(l for l in lines if "()" in l and "/\\" in l)
lips_start_x = lips_line.index('(')
lips_end_x = lips_line.rindex(')')