insects.cpp: In lambda function:
insects.cpp:11:22: error: continue statement not within a loop
11 | if (used[i]) continue;
| ^~~~~~~~
insects.cpp: In lambda function:
insects.cpp:18:23: error: continue statement not within a loop
18 | if (!used[i]) continue;
| ^~~~~~~~
insects.cpp: In function 'int min_cardinality(int)':
insects.cpp:58:5: error: expected ',' or ';' before 'int'
58 | int low = 1, high = N / D;
| ^~~
insects.cpp:59:18: error: 'high' was not declared in this scope
59 | while (low < high){
| ^~~~
insects.cpp:59:12: error: 'low' was not declared in this scope; did you mean 'pow'?
59 | while (low < high){
| ^~~
| pow
insects.cpp:65:12: error: 'low' was not declared in this scope; did you mean 'pow'?
65 | return low;
| ^~~
| pow