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
| 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; |