Skip to content

Commit e3bd859

Browse files
committed
returning list
1 parent 9519183 commit e3bd859

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

lib/src/utility/math_util.dart

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -407,3 +407,12 @@ class MathUtil {
407407
list.add(expression);
408408
}
409409
});
410+
}
411+
list.forEach((Expression q) {
412+
print("${q.toString()}");
413+
});
414+
return list;
415+
}
416+
417+
static List<Expression> generate(int level, int count) {
418+
var list = <Expression>[];

0 commit comments

Comments
 (0)