| 702 | |
| 703 | |
| 704 | int main(int argc, char **argv) { |
| 705 | Context ctx = createContext(); |
| 706 | puzzle1(ctx); |
| 707 | puzzle2(ctx); |
| 708 | puzzle3(ctx); |
| 709 | puzzle4(ctx); |
| 710 | puzzle5(ctx); |
| 711 | puzzle6(ctx); |
| 712 | puzzle7(ctx); |
| 713 | puzzle8(ctx); |
| 714 | puzzle9(ctx); |
| 715 | puzzle10(ctx); |
| 716 | puzzle11(ctx); |
| 717 | puzzle12(ctx); |
| 718 | puzzle13(ctx); |
| 719 | puzzle14(ctx); |
| 720 | return 0; |
| 721 | } |
nothing calls this directly
no test coverage detected