Skip to content

Commit

Permalink
small revision of some levels
Browse files Browse the repository at this point in the history
This should help getting accustomed to X in level 1.
The other levels were a bit short.
  • Loading branch information
mwageringel committed Aug 15, 2022
1 parent 5731e13 commit dcf89ac
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion lib/game.dart
Original file line number Diff line number Diff line change
Expand Up @@ -158,9 +158,10 @@ class Game with ChangeNotifier {
q1(C(4) + C(3)),
q1(C(2) + C(6)),
q1(C(1) + C(5)),
q1(C(0) + X),
q1(C(3) + C(7)),
q1(C(6) + C(4)),
q1(C(2) + C(7)),
q1(C(6) + C(4)),
q1(C(9) + C(1)),
q1(C(0) + C(0)),
q1(C(3) + X),
Expand Down Expand Up @@ -192,6 +193,8 @@ class Game with ChangeNotifier {
q1(-C(3)),
q1(-C(5)),
q1(C(7) - C(8)),
q1(C(2) - C(6)),
q1(C(1) - C(9)),
], [
q1(X - C(7)),
q1(-C(1)),
Expand All @@ -205,6 +208,7 @@ class Game with ChangeNotifier {
q1(C(1) * X), // 1
q1(C(7) * C(5)),
q1(X * C(6)),
q1(C(9) * C(9)),
], [
q1(C(7) * C(8)),
q1(X * C(0)),
Expand All @@ -216,6 +220,10 @@ class Game with ChangeNotifier {
q1(C(6) * C(2)),
q1(C(1) / C(2)),
q1(C(3) / C(2)),
q1(C(7) * C(2)),
q1(C(2) / C(2)),
q1(C(6) / C(2)),
q1(C(7) / C(2)),
], [
q1(C(5) / C(2)),
q1(C(9) / C(2)),
Expand All @@ -227,6 +235,9 @@ class Game with ChangeNotifier {
q1(C(5) / C(4)),
q1(X / C(4)), // double of previous
q1(C(1) / C(6)), // denominator of exam
q1(C(1) / C(9)),
q1(C(3) / C(8)),
q1(C(7) / C(5)),
], [
q1(C(1) / C(7)),
q1(C(1) / X),
Expand Down
Binary file modified metadata/en-US/images/phoneScreenshots/2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit dcf89ac

Please sign in to comment.