Skip to content

Instantly share code, notes, and snippets.

View shreyasa31's full-sized avatar
🎯
Focusing

Shreya Sadashiva Kamath shreyasa31

🎯
Focusing
  • University of Southern California
  • Los Angeles
View GitHub Profile
@shreyasa31
shreyasa31 / angelica-score.java
Created May 1, 2026 05:32
Solution for ASCII polkadot scoring challenge
public class AngelicaScore {
public static int computeScore(String asciiArt) {
String[] lines = asciiArt.split("\n");
int pupilCount = 0;
int lipsLineIndex = -1;
int lipStart = -1;
int lipEnd = -1;