mirror of
https://github.com/renbaoshuo/S2OJ.git
synced 2024-11-08 16:48:41 +00:00
commit
d830cf16c7
@ -233,7 +233,7 @@
|
||||
} else {
|
||||
$n_ex_tests = getUOJConfVal($this->problem_conf, 'n_ex_tests', 0);
|
||||
if (!validateUInt($n_ex_tests) || $n_ex_tests < 0) {
|
||||
throw new UOJProblemConfException("n_ex_tests must be a non-nagative integer");
|
||||
throw new UOJProblemConfException("n_ex_tests must be a non-negative integer");
|
||||
}
|
||||
|
||||
for ($num = 1; $num <= $n_ex_tests; $num++) {
|
||||
@ -267,7 +267,7 @@
|
||||
|
||||
$n_sample_tests = getUOJConfVal($this->problem_conf, 'n_sample_tests', $n_tests);
|
||||
if (!validateUInt($n_sample_tests) || $n_sample_tests < 0) {
|
||||
throw new UOJProblemConfException("n_sample_tests must be a non-nagative integer");
|
||||
throw new UOJProblemConfException("n_sample_tests must be a non-negative integer");
|
||||
}
|
||||
if ($n_sample_tests > $n_ex_tests) {
|
||||
throw new UOJProblemConfException("n_sample_tests can't be greater than n_ex_tests");
|
||||
|
Loading…
Reference in New Issue
Block a user