This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const fs = require("fs"); | |
| function computePolkadotScore(asciiArt) { | |
| const lines = asciiArt.split(/\r?\n/); | |
| const ignoredChars = new Set(["'", "`", ",", "-", " "]); | |
| let pupilCount = 0; | |
| let pupilLineIndex = -1; |