blob: 3ff578cdfeff1da041177abdefdf1838627152d0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
all: inversion
matrix_square_testcase_1:
./judge --enable-get problems/14-Matrix-Square/testcase_1_double_4x4.vsm problems/14-Matrix-Square/answer_1_double_4x4.vsm
matrix_square_testcase_2:
./judge --enable-get problems/14-Matrix-Square/testcase_2_float_8x8.vsm problems/14-Matrix-Square/answer_2_float_8x8.vsm
matrix_square:
./judge --enable-get problems/14-Matrix-Square/testcase.vsm problems/14-Matrix-Square/02.vsm
hello_world:
./judge --enable-get example/hello_world/testcase.vsm example/hello_world/example.vsm
mod3:
./judge --enable-get problems/13-Mod-3/testcase.vsm problems/13-Mod-3/08.vsm
contains:
./judge --enable-get problems/15-Contains/testcase.vsm problems/15-Contains/03.vsm
inversion:
./judge --enable-get problems/19-Inversion/testcase.vsm problems/19-Inversion/04.vsm
|