jelly.cpp: In function 'int find_maximum_unique(int, int, std::vector<int>, std::vector<int>)':
jelly.cpp:16:17: warning: right operand of comma operator has no effect [-Wunused-value]
16 | a[i] = 10,001;
| ^
jelly.cpp:17:17: warning: right operand of comma operator has no effect [-Wunused-value]
17 | b[i] = 10,001;
| ^
jelly.cpp:23:17: warning: right operand of comma operator has no effect [-Wunused-value]
23 | a[i] = 10,001;
| ^
jelly.cpp:24:17: warning: right operand of comma operator has no effect [-Wunused-value]
24 | b[i] = 10,001;
| ^
jelly.cpp:8:6: warning: unused variable 'n' [-Wunused-variable]
8 | int n = a.size();
| ^