Skip to content

Instantly share code, notes, and snippets.

View vincent1212dev-ctrl's full-sized avatar

vincent1212dev-ctrl

  • Joined May 8, 2026
View GitHub Profile
const fs = require("fs");
function computePolkadotScore(asciiArt) {
const lines = asciiArt.split(/\r?\n/);
const ignoredChars = new Set(["'", "`", ",", "-", " "]);
let pupilCount = 0;
let pupilLineIndex = -1;