We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cc8843b commit ed96c54Copy full SHA for ed96c54
lib/src/results.dart
@@ -65,7 +65,7 @@ class Results {
65
final List<String> tokenized = splitCommand(_commands[i]);
66
switch (tokenized.first) {
67
case "paint":
68
- lineScore = tokenized.length == 2 ? 0 : 1;
+ lineScore = tokenized.length == 2 ? 0 : splitByCurly(tokenized[1]).length == 1 ? 1 : 2;
69
break;
70
case "fill_empty":
71
lineScore = 1;
0 commit comments