12 lines
149 B
MiniZinc
12 lines
149 B
MiniZinc
/***
|
|
!Test
|
|
expected:
|
|
- !Result
|
|
solution: !Solution
|
|
_output_item: '0'
|
|
***/
|
|
|
|
int: x = length([]) + length([]);
|
|
solve satisfy;
|
|
output([show(x)]);
|