-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathCargo.toml
More file actions
1102 lines (1098 loc) · 58.4 KB
/
Cargo.toml
File metadata and controls
1102 lines (1098 loc) · 58.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[workspace]
members = [
"rust/library",
"rust/test_executor",
"problems/problems_1",
"problems/problems_2",
"problems/problems_2766",
"problems/problems_279",
"problems/problems_2844",
"problems/problems_49",
"problems/problems_2740",
"problems/problems_239",
"problems/problems_3106",
"problems/problems_34",
"problems/problems_102",
"problems/problems_1379",
"problems/problems_236",
"problems/problems_116",
"problems/problems_117",
"problems/problems_133",
"problems/problems_138",
"problems/problems_699",
"problems/problems_39",
"problems/problems_215",
"problems/problems_682",
"problems/problems_56",
"problems/problems_2961",
"problems/problems_394",
"problems/problems_3111",
"problems/problems_5",
"problems/problems_LCP_40",
"problems/problems_169",
"problems/problems_3128",
"problems/problems_322",
"problems/problems_3143",
"problems/problems_21",
"problems/problems_108",
"problems/problems_572",
"problems/problems_33",
"problems/problems_98",
"problems/problems_2808",
"problems/problems_600",
"problems/problems_15",
"problems/problems_2398",
"problems/problems_3129",
"problems/problems_438",
"problems/problems_3130",
"problems/problems_48",
"problems/problems_950",
"problems/problems_3131",
"problems/problems_207",
"problems/problems_2553",
"problems/problems_3132",
"problems/problems_22",
"problems/problems_2940",
"problems/problems_55",
"problems/problems_139",
"problems/problems_1035",
"problems/problems_19",
"problems/problems_230",
"problems/problems_2236",
"problems/problems_762",
"problems/problems_676",
"problems/problems_24",
"problems/problems_3151",
"problems/problems_189",
"problems/problems_1139",
"problems/problems_3152",
"problems/problems_199",
"problems/problems_3148",
"problems/problems_739",
"problems/problems_3117",
"problems/problems_LCR_007",
"problems/problems_300",
"problems/problems_2578",
"problems/problems_LCP_40",
"problems/problems_3137",
"problems/problems_1143",
"problems/problems_31",
"problems/problems_LCR_014",
"problems/problems_LCR_036",
"problems/problems_551",
"problems/problems_79",
"problems/problems_25",
"problems/problems_LCR_059",
"problems/problems_LCR_062",
"problems/problems_552",
"problems/problems_LCR_074",
"problems/problems_128",
"problems/problems_3154",
"problems/problems_LCR_079",
"problems/problems_76",
"problems/problems_3007",
"problems/problems_LCR_088",
"problems/problems_114",
"problems/problems_3133",
"problems/problems_153",
"problems/problems_LCR_047",
"problems/problems_3145",
"problems/problems_295",
"problems/problems_LCR_021",
"problems/problems_3146",
"problems/problems_LCR_089",
"problems/problems_LCR_080",
"problems/problems_152",
"problems/problems_698",
"problems/problems_LCR_001",
"problems/problems_LCR_031",
"problems/problems_105",
"problems/problems_42",
"problems/problems_LCR_042",
"problems/problems_240",
"problems/problems_3134",
"problems/problems_LCR_068",
"problems/problems_208",
"problems/problems_3144",
"problems/problems_LCR_008",
"problems/problems_131",
"problems/problems_3142",
"problems/problems_LCR_015",
"problems/problems_45",
"problems/problems_3153",
"problems/problems_LCR_048",
"problems/problems_148",
"problems/problems_3127",
"problems/problems_LCR_105",
"problems/problems_LCR_090",
"problems/problems_437",
"problems/problems_238",
"problems/problems_1450",
"problems/problems_LCR_063",
"problems/problems_84",
"problems/problems_416",
"problems/problems_2024",
"problems/problems_LCR_037",
"problems/problems_72",
"problems/problems_2708",
"problems/problems_LCR_075",
"problems/problems_287",
"problems/problems_2860",
"problems/problems_LCR_081",
"problems/problems_4",
"problems/problems_3174",
"problems/problems_LCR_092",
"problems/problems_23",
"problems/problems_3176",
"problems/problems_LCR_106",
"problems/problems_3177",
"problems/problems_LCR_049",
"problems/problems_LCR_093",
"problems/problems_51",
"problems/problems_32",
"problems/problems_977",
"problems/problems_LCR_009",
"problems/problems_LCR_016",
"problems/problems_146",
"problems/problems_124",
"problems/problems_2181",
"problems/problems_LCR_107",
"problems/problems_2552",
"problems/problems_LCR_002",
"problems/problems_2555",
"problems/problems_LCR_032",
"problems/problems_2576",
"problems/problems_LCR_043",
"problems/problems_LCR_070",
"problems/problems_2390",
"problems/problems_LCR_050",
"problems/problems_2848",
"problems/problems_LCR_060",
"problems/problems_LCR_064",
"problems/problems_LCR_082",
"problems/problems_1184",
"problems/problems_815",
"problems/problems_LCR_094",
"problems/problems_2332",
"problems/problems_LCR_108",
"problems/problems_LCR_038",
"problems/problems_2414",
"problems/problems_2376",
"problems/problems_LCR_051",
"problems/problems_2374",
"problems/problems_LCR_076",
"problems/problems_LCR_095",
"problems/problems_997",
"problems/problems_LCR_024",
"problems/problems_LCR_109",
"problems/problems_1014",
"problems/problems_LCR_010",
"problems/problems_2207",
"problems/problems_LCR_017",
"problems/problems_2306",
"problems/problems_LCR_083",
"problems/problems_2535",
"problems/problems_LCR_096",
"problems/problems_2516",
"problems/problems_LCR_003",
"problems/problems_2286",
"problems/problems_LCR_033",
"problems/problems_LCR_044",
"problems/problems_2073",
"problems/problems_1845",
"problems/problems_983",
"problems/problems_1870",
"problems/problems_1928",
"problems/problems_1227",
"problems/problems_2187",
"problems/problems_LCR_052",
"problems/problems_134",
"problems/problems_LCR_110",
"problems/problems_871",
"problems/problems_1436",
"problems/problems_3171",
"problems/problems_3162",
"problems/problems_3164",
"problems/problems_3158",
"problems/problems_LCR_065",
"problems/problems_1884",
"problems/problems_LCR_097",
"problems/problems_887",
"problems/problems_3200",
"problems/problems_3194",
"problems/problems_3193",
"problems/problems_3191",
"problems/problems_3192",
"problems/problems_LCR_025",
"problems/problems_908",
"problems/problems_LCR_084",
"problems/problems_910",
"problems/problems_3184",
"problems/problems_3185",
"problems/problems_3175",
"problems/problems_3180",
"problems/problems_3181",
"problems/problems_684",
"problems/problems_LCR_053",
"problems/problems_3211",
"problems/problems_3216",
"problems/problems_3259",
"problems/problems_2278",
"problems/problems_2140",
"problems/problems_2873",
"problems/problems_2874",
"problems/problems_344",
"problems/problems_75",
"problems/problems_779",
"problems/problems_3304",
"problems/problems_3307",
"problems/problems_1394",
"problems/problems_1865",
"problems/problems_1353",
"problems/problems_1751",
"problems/problems_3439",
"problems/problems_3440",
"problems/problems_3169",
"problems/problems_1900",
"problems/problems_2410",
"problems/problems_1290",
"problems/problems_3136",
"problems/problems_3201",
"problems/problems_3202",
"problems/problems_2163",
"problems/problems_1233",
"problems/problems_1948",
"problems/problems_1957",
"problems/problems_1695",
"problems/problems_1717",
"problems/problems_2322",
"problems/problems_3487",
"problems/problems_3480",
"problems/problems_2210",
"problems/problems_2044",
"problems/problems_2411",
"problems/problems_2419",
"problems/problems_2683",
"problems/problems_118",
"problems/problems_2561",
"problems/problems_2106",
"problems/problems_904",
"problems/problems_3477",
"problems/problems_3479",
"problems/problems_3363",
"problems/problems_808",
"problems/problems_231",
"problems/problems_869",
"problems/problems_2438",
"problems/problems_2787",
"problems/problems_326",
"problems/problems_1780",
"problems/problems_342",
"problems/problems_1323",
"problems/problems_837",
"problems/problems_679",
"problems/problems_2348",
"problems/problems_1277",
"problems/problems_1504",
"problems/problems_3195",
"problems/problems_3197",
"problems/problems_1493",
"problems/problems_498",
"problems/problems_3000",
"problems/problems_3459",
"problems/problems_3446",
"problems/problems_3021",
"problems/problems_36",
"problems/problems_37",
"problems/problems_1792",
"problems/problems_3025",
"problems/problems_3027",
"problems/problems_3516",
"problems/problems_2749",
"problems/problems_3495",
"problems/problems_1304",
"problems/problems_1317",
"problems/problems_2327",
"problems/problems_1733",
"problems/problems_2785",
"problems/problems_3227",
"problems/problems_3541",
"problems/problems_966",
"problems/problems_1935",
"problems/problems_2197",
"problems/problems_2349",
"problems/problems_3408",
"problems/problems_3484",
"problems/problems_3508",
"problems/problems_1912",
"problems/problems_3005",
"problems/problems_165",
"problems/problems_166",
"problems/problems_120",
"problems/problems_611",
"problems/problems_812",
"problems/problems_976",
"problems/problems_1039",
"problems/problems_2221",
"problems/problems_1518",
"problems/problems_3100",
"problems/problems_407",
"problems/problems_11",
"problems/problems_417",
"problems/problems_778",
"problems/problems_1488",
"problems/problems_2300",
"problems/problems_3494",
"problems/problems_3147",
"problems/problems_3186",
"problems/problems_3539",
"problems/problems_2273",
"problems/problems_3349",
"problems/problems_3350",
"problems/problems_2598",
"problems/problems_3003",
"problems/problems_3397",
"problems/problems_1625",
"problems/problems_2011",
"problems/problems_3346",
"problems/problems_3347",
"problems/problems_3461",
"problems/problems_2048",
"problems/problems_1716",
"problems/problems_2043",
"problems/problems_2125",
"problems/problems_3354",
"problems/problems_3370",
"problems/problems_1526",
"problems/problems_3289",
"problems/problems_3217",
"problems/problems_2257",
"problems/problems_1578",
"problems/problems_3318",
"problems/problems_3321",
"problems/problems_3607",
"problems/problems_2528",
"problems/problems_1611",
"problems/problems_2169",
"problems/problems_3542",
"problems/problems_474",
"problems/problems_2654",
"problems/problems_3228",
"problems/problems_2536",
"problems/problems_3234",
"problems/problems_1513",
"problems/problems_1437",
"problems/problems_717",
"problems/problems_2154",
"problems/problems_757",
"problems/problems_1930",
"problems/problems_3190",
"problems/problems_1262",
"problems/problems_1018",
"problems/problems_1015",
"problems/problems_2435",
"problems/problems_3381",
"problems/problems_2872",
"problems/problems_3512",
"problems/problems_1590",
"problems/problems_2141",
"problems/problems_3623",
"problems/problems_3625",
"problems/problems_2211",
"problems/problems_3432",
"problems/problems_3578",
"problems/problems_1523",
"problems/problems_1925",
"problems/problems_3583",
"problems/problems_3577",
"problems/problems_3531",
"problems/problems_3433",
"problems/problems_3606",
"problems/problems_2147",
"problems/problems_2110",
"problems/problems_3562",
"problems/problems_3573",
"problems/problems_Interview_08__01",
"problems/problems_3652",
"problems/problems_Interview_16__01",
"problems/problems_2092",
"problems/problems_Interview_16__02",
"problems/problems_944",
"problems/problems_Interview_08__02",
"problems/problems_Interview_16__03",
"problems/problems_955",
"problems/problems_Interview_02__01",
"problems/problems_Interview_10__01",
"problems/problems_960",
"problems/problems_Interview_16__04",
"problems/problems_2054",
"problems/problems_Interview_03__02",
"problems/problems_3074",
"problems/problems_Interview_05__02",
"problems/problems_3075",
"problems/problems_Interview_08__03",
"problems/problems_2483",
"problems/problems_Interview_16__05",
"problems/problems_2402",
"problems/problems_Interview_16__06",
"problems/problems_Interview_08__04",
"problems/problems_1351",
"problems/problems_Interview_17__04",
"problems/problems_756",
"problems/problems_840",
"problems/problems_1970",
"problems/problems_66",
"problems/problems_961",
"problems/problems_1411",
"problems/problems_1390",
"problems/problems_1975",
"problems/problems_1161",
"problems/problems_1339",
"problems/problems_1458",
"problems/problems_865",
"problems/problems_712",
"problems/problems_85",
"problems/problems_1266",
"problems/problems_3453",
"problems/problems_2943",
"problems/problems_2975",
"problems/problems_3047",
"problems/problems_1895",
"problems/problems_1292",
"problems/problems_3314",
"problems/problems_3315",
"problems/problems_3507",
"problems/problems_3510",
"problems/problems_1877",
"problems/problems_1984",
"problems/problems_1200",
"problems/problems_3650",
"problems/problems_3651",
"problems/problems_2976",
"problems/problems_2977",
"problems/problems_744",
"problems/problems_3010",
"problems/problems_3013",
"problems/problems_3637",
"problems/problems_3640",
"problems/problems_3379",
"problems/problems_3634",
"problems/problems_1653",
"problems/problems_110",
"problems/problems_1382",
"problems/problems_3719",
"problems/problems_3721",
"problems/problems_3713",
"problems/problems_3714",
"problems/problems_799",
"problems/problems_67",
"problems/problems_190",
"problems/problems_401",
"problems/problems_693",
"problems/problems_696",
"problems/problems_761",
"problems/problems_868",
"problems/problems_1461",
"problems/problems_1022",
"problems/problems_1356",
"problems/problems_1404",
"problems/problems_3666",
"problems/problems_1680",
"problems/problems_1689",
"problems/problems_1536",
"problems/problems_1545",
"problems/problems_1582",
"problems/problems_1758",
"problems/problems_1784",
"problems/problems_1888",
"problems/problems_1980",
"problems/problems_1009",
"problems/problems_3600",
"problems/problems_3296",
"problems/problems_1415",
"problems/problems_1622",
"problems/problems_1878",
"problems/problems_1727",
"problems/problems_3070",
"problems/problems_3212",
"problems/problems_3567",
"problems/problems_3643",
"problems/problems_1886",
"problems/problems_1594",
"problems/problems_2906",
"problems/problems_3546",
"problems/problems_2946",
"problems/problems_2573",
"problems/problems_2839",
"problems/problems_2840",
"problems/problems_3474",
"problems/problems_2751",
"problems/problems_1320",
"problems/problems_1848",
"problems/problems_2463",
"problems/problems_2515",
"problems/problems_3488",
"problems/problems_3761",
"problems/problems_3783",
"problems/problems_1855",
"problems/problems_2078",
"problems/problems_1722",
"problems/problems_2452",
"problems/problems_2615",
]
[package]
name = "leetcode"
version = "0.1.0"
edition = "2021"
rust-version = "1.79.0"
authors = ["benhao"]
description = "LeetCode solutions in Rust"
readme = "README.md"
[[test]]
name = "solution_test"
path = "rust/test_executor/tests/test.rs"
[[test]]
name = "solutions_test"
path = "rust/test_executor/tests/solutions_test.rs"
[dependencies]
serde_json = "1.0"
rand = "0.8.4"
regex = "1.10.5"
assert_float_eq = "1"
test_executor = { path = "rust/test_executor", features = ["run_test"] }
solution_1 = { path = "problems/problems_1", features = ["solution_1"] }
solution_2 = { path = "problems/problems_2", features = ["solution_2"] }
solution_2766 = { path = "problems/problems_2766", features = ["solution_2766"] }
solution_279 = { path = "problems/problems_279", features = ["solution_279"] }
solution_2844 = { path = "problems/problems_2844", features = ["solution_2844"] }
solution_49 = { path = "problems/problems_49", features = ["solution_49"] }
solution_2740 = { path = "problems/problems_2740", features = ["solution_2740"] }
solution_239 = { path = "problems/problems_239", features = ["solution_239"] }
solution_3106 = { path = "problems/problems_3106", features = ["solution_3106"] }
solution_34 = { path = "problems/problems_34", features = ["solution_34"] }
solution_102 = { path = "problems/problems_102", features = ["solution_102"] }
solution_1379 = { path = "problems/problems_1379", features = ["solution_1379"] }
solution_236 = { path = "problems/problems_236", features = ["solution_236"] }
solution_116 = { path = "problems/problems_116", features = ["solution_116"] }
solution_117 = { path = "problems/problems_117", features = ["solution_117"] }
solution_133 = { path = "problems/problems_133", features = ["solution_133"] }
solution_138 = { path = "problems/problems_138", features = ["solution_138"] }
solution_699 = { path = "problems/problems_699", features = ["solution_699"] }
solution_39 = { path = "problems/problems_39", features = ["solution_39"] }
solution_215 = { path = "problems/problems_215", features = ["solution_215"] }
solution_682 = { path = "problems/problems_682", features = ["solution_682"] }
solution_56 = { path = "problems/problems_56", features = ["solution_56"] }
solution_2961 = { path = "problems/problems_2961", features = ["solution_2961"] }
solution_394 = { path = "problems/problems_394", features = ["solution_394"] }
solution_3111 = { path = "problems/problems_3111", features = ["solution_3111"] }
solution_5 = { path = "problems/problems_5", features = ["solution_5"] }
solution_169 = { path = "problems/problems_169", features = ["solution_169"] }
solution_3128 = { path = "problems/problems_3128", features = ["solution_3128"] }
solution_322 = { path = "problems/problems_322", features = ["solution_322"] }
solution_3143 = { path = "problems/problems_3143", features = ["solution_3143"] }
solution_21 = { path = "problems/problems_21", features = ["solution_21"] }
solution_108 = { path = "problems/problems_108", features = ["solution_108"] }
solution_572 = { path = "problems/problems_572", features = ["solution_572"] }
solution_33 = { path = "problems/problems_33", features = ["solution_33"] }
solution_98 = { path = "problems/problems_98", features = ["solution_98"] }
solution_2808 = { path = "problems/problems_2808", features = ["solution_2808"] }
solution_600 = { path = "problems/problems_600", features = ["solution_600"] }
solution_15 = { path = "problems/problems_15", features = ["solution_15"] }
solution_2398 = { path = "problems/problems_2398", features = ["solution_2398"] }
solution_3129 = { path = "problems/problems_3129", features = ["solution_3129"] }
solution_438 = { path = "problems/problems_438", features = ["solution_438"] }
solution_3130 = { path = "problems/problems_3130", features = ["solution_3130"] }
solution_48 = { path = "problems/problems_48", features = ["solution_48"] }
solution_950 = { path = "problems/problems_950", features = ["solution_950"] }
solution_3131 = { path = "problems/problems_3131", features = ["solution_3131"] }
solution_207 = { path = "problems/problems_207", features = ["solution_207"] }
solution_2553 = { path = "problems/problems_2553", features = ["solution_2553"] }
solution_3132 = { path = "problems/problems_3132", features = ["solution_3132"] }
solution_22 = { path = "problems/problems_22", features = ["solution_22"] }
solution_2940 = { path = "problems/problems_2940", features = ["solution_2940"] }
solution_55 = { path = "problems/problems_55", features = ["solution_55"] }
solution_139 = { path = "problems/problems_139", features = ["solution_139"] }
solution_1035 = { path = "problems/problems_1035", features = ["solution_1035"] }
solution_19 = { path = "problems/problems_19", features = ["solution_19"] }
solution_230 = { path = "problems/problems_230", features = ["solution_230"] }
solution_2236 = { path = "problems/problems_2236", features = ["solution_2236"] }
solution_762 = { path = "problems/problems_762", features = ["solution_762"] }
solution_676 = { path = "problems/problems_676", features = ["solution_676"] }
solution_24 = { path = "problems/problems_24", features = ["solution_24"] }
solution_3151 = { path = "problems/problems_3151", features = ["solution_3151"] }
solution_189 = { path = "problems/problems_189", features = ["solution_189"] }
solution_1139 = { path = "problems/problems_1139", features = ["solution_1139"] }
solution_3152 = { path = "problems/problems_3152", features = ["solution_3152"] }
solution_199 = { path = "problems/problems_199", features = ["solution_199"] }
solution_3148 = { path = "problems/problems_3148", features = ["solution_3148"] }
solution_739 = { path = "problems/problems_739", features = ["solution_739"] }
solution_3117 = { path = "problems/problems_3117", features = ["solution_3117"] }
solution_LCR_007 = { path = "problems/problems_LCR_007", features = ["solution_LCR_007"] }
solution_300 = { path = "problems/problems_300", features = ["solution_300"] }
solution_2578 = { path = "problems/problems_2578", features = ["solution_2578"] }
solution_LCP_40 = { path = "problems/problems_LCP_40", features = ["solution_LCP_40"] }
solution_3137 = { path = "problems/problems_3137", features = ["solution_3137"] }
solution_1143 = { path = "problems/problems_1143", features = ["solution_1143"] }
solution_31 = { path = "problems/problems_31", features = ["solution_31"] }
solution_LCR_014 = { path = "problems/problems_LCR_014", features = ["solution_LCR_014"] }
solution_LCR_036 = { path = "problems/problems_LCR_036", features = ["solution_LCR_036"] }
solution_551 = { path = "problems/problems_551", features = ["solution_551"] }
solution_79 = { path = "problems/problems_79", features = ["solution_79"] }
solution_25 = { path = "problems/problems_25", features = ["solution_25"] }
solution_LCR_059 = { path = "problems/problems_LCR_059", features = ["solution_LCR_059"] }
solution_LCR_062 = { path = "problems/problems_LCR_062", features = ["solution_LCR_062"] }
solution_552 = { path = "problems/problems_552", features = ["solution_552"] }
solution_LCR_074 = { path = "problems/problems_LCR_074", features = ["solution_LCR_074"] }
solution_128 = { path = "problems/problems_128", features = ["solution_128"] }
solution_3154 = { path = "problems/problems_3154", features = ["solution_3154"] }
solution_LCR_079 = { path = "problems/problems_LCR_079", features = ["solution_LCR_079"] }
solution_76 = { path = "problems/problems_76", features = ["solution_76"] }
solution_3007 = { path = "problems/problems_3007", features = ["solution_3007"] }
solution_LCR_088 = { path = "problems/problems_LCR_088", features = ["solution_LCR_088"] }
solution_114 = { path = "problems/problems_114", features = ["solution_114"] }
solution_3133 = { path = "problems/problems_3133", features = ["solution_3133"] }
solution_153 = { path = "problems/problems_153", features = ["solution_153"] }
solution_LCR_047 = { path = "problems/problems_LCR_047", features = ["solution_LCR_047"] }
solution_3145 = { path = "problems/problems_3145", features = ["solution_3145"] }
solution_295 = { path = "problems/problems_295", features = ["solution_295"] }
solution_LCR_021 = { path = "problems/problems_LCR_021", features = ["solution_LCR_021"] }
solution_3146 = { path = "problems/problems_3146", features = ["solution_3146"] }
solution_LCR_089 = { path = "problems/problems_LCR_089", features = ["solution_LCR_089"] }
solution_LCR_080 = { path = "problems/problems_LCR_080", features = ["solution_LCR_080"] }
solution_152 = { path = "problems/problems_152", features = ["solution_152"] }
solution_698 = { path = "problems/problems_698", features = ["solution_698"] }
solution_LCR_001 = { path = "problems/problems_LCR_001", features = ["solution_LCR_001"] }
solution_LCR_031 = { path = "problems/problems_LCR_031", features = ["solution_LCR_031"] }
solution_105 = { path = "problems/problems_105", features = ["solution_105"] }
solution_42 = { path = "problems/problems_42", features = ["solution_42"] }
solution_LCR_042 = { path = "problems/problems_LCR_042", features = ["solution_LCR_042"] }
solution_240 = { path = "problems/problems_240", features = ["solution_240"] }
solution_3134 = { path = "problems/problems_3134", features = ["solution_3134"] }
solution_LCR_068 = { path = "problems/problems_LCR_068", features = ["solution_LCR_068"] }
solution_208 = { path = "problems/problems_208", features = ["solution_208"] }
solution_3144 = { path = "problems/problems_3144", features = ["solution_3144"] }
solution_LCR_008 = { path = "problems/problems_LCR_008", features = ["solution_LCR_008"] }
solution_131 = { path = "problems/problems_131", features = ["solution_131"] }
solution_3142 = { path = "problems/problems_3142", features = ["solution_3142"] }
solution_LCR_015 = { path = "problems/problems_LCR_015", features = ["solution_LCR_015"] }
solution_45 = { path = "problems/problems_45", features = ["solution_45"] }
solution_3153 = { path = "problems/problems_3153", features = ["solution_3153"] }
solution_LCR_048 = { path = "problems/problems_LCR_048", features = ["solution_LCR_048"] }
solution_148 = { path = "problems/problems_148", features = ["solution_148"] }
solution_3127 = { path = "problems/problems_3127", features = ["solution_3127"] }
solution_LCR_105 = { path = "problems/problems_LCR_105", features = ["solution_LCR_105"] }
solution_LCR_090 = { path = "problems/problems_LCR_090", features = ["solution_LCR_090"] }
solution_437 = { path = "problems/problems_437", features = ["solution_437"] }
solution_238 = { path = "problems/problems_238", features = ["solution_238"] }
solution_1450 = { path = "problems/problems_1450", features = ["solution_1450"] }
solution_LCR_063 = { path = "problems/problems_LCR_063", features = ["solution_LCR_063"] }
solution_84 = { path = "problems/problems_84", features = ["solution_84"] }
solution_416 = { path = "problems/problems_416", features = ["solution_416"] }
solution_2024 = { path = "problems/problems_2024", features = ["solution_2024"] }
solution_LCR_037 = { path = "problems/problems_LCR_037", features = ["solution_LCR_037"] }
solution_72 = { path = "problems/problems_72", features = ["solution_72"] }
solution_2708 = { path = "problems/problems_2708", features = ["solution_2708"] }
solution_LCR_075 = { path = "problems/problems_LCR_075", features = ["solution_LCR_075"] }
solution_287 = { path = "problems/problems_287", features = ["solution_287"] }
solution_2860 = { path = "problems/problems_2860", features = ["solution_2860"] }
solution_LCR_081 = { path = "problems/problems_LCR_081", features = ["solution_LCR_081"] }
solution_4 = { path = "problems/problems_4", features = ["solution_4"] }
solution_3174 = { path = "problems/problems_3174", features = ["solution_3174"] }
solution_LCR_092 = { path = "problems/problems_LCR_092", features = ["solution_LCR_092"] }
solution_23 = { path = "problems/problems_23", features = ["solution_23"] }
solution_3176 = { path = "problems/problems_3176", features = ["solution_3176"] }
solution_LCR_106 = { path = "problems/problems_LCR_106", features = ["solution_LCR_106"] }
solution_3177 = { path = "problems/problems_3177", features = ["solution_3177"] }
solution_LCR_049 = { path = "problems/problems_LCR_049", features = ["solution_LCR_049"] }
solution_LCR_093 = { path = "problems/problems_LCR_093", features = ["solution_LCR_093"] }
solution_51 = { path = "problems/problems_51", features = ["solution_51"] }
solution_32 = { path = "problems/problems_32", features = ["solution_32"] }
solution_977 = { path = "problems/problems_977", features = ["solution_977"] }
solution_LCR_009 = { path = "problems/problems_LCR_009", features = ["solution_LCR_009"] }
solution_LCR_016 = { path = "problems/problems_LCR_016", features = ["solution_LCR_016"] }
solution_146 = { path = "problems/problems_146", features = ["solution_146"] }
solution_124 = { path = "problems/problems_124", features = ["solution_124"] }
solution_2181 = { path = "problems/problems_2181", features = ["solution_2181"] }
solution_LCR_107 = { path = "problems/problems_LCR_107", features = ["solution_LCR_107"] }
solution_2552 = { path = "problems/problems_2552", features = ["solution_2552"] }
solution_LCR_002 = { path = "problems/problems_LCR_002", features = ["solution_LCR_002"] }
solution_2555 = { path = "problems/problems_2555", features = ["solution_2555"] }
solution_LCR_032 = { path = "problems/problems_LCR_032", features = ["solution_LCR_032"] }
solution_2576 = { path = "problems/problems_2576", features = ["solution_2576"] }
solution_LCR_043 = { path = "problems/problems_LCR_043", features = ["solution_LCR_043"] }
solution_LCR_070 = { path = "problems/problems_LCR_070", features = ["solution_LCR_070"] }
solution_2390 = { path = "problems/problems_2390", features = ["solution_2390"] }
solution_LCR_050 = { path = "problems/problems_LCR_050", features = ["solution_LCR_050"] }
solution_2848 = { path = "problems/problems_2848", features = ["solution_2848"] }
solution_LCR_060 = { path = "problems/problems_LCR_060", features = ["solution_LCR_060"] }
solution_LCR_064 = { path = "problems/problems_LCR_064", features = ["solution_LCR_064"] }
solution_LCR_082 = { path = "problems/problems_LCR_082", features = ["solution_LCR_082"] }
solution_1184 = { path = "problems/problems_1184", features = ["solution_1184"] }
solution_815 = { path = "problems/problems_815", features = ["solution_815"] }
solution_LCR_094 = { path = "problems/problems_LCR_094", features = ["solution_LCR_094"] }
solution_2332 = { path = "problems/problems_2332", features = ["solution_2332"] }
solution_LCR_108 = { path = "problems/problems_LCR_108", features = ["solution_LCR_108"] }
solution_LCR_038 = { path = "problems/problems_LCR_038", features = ["solution_LCR_038"] }
solution_2414 = { path = "problems/problems_2414", features = ["solution_2414"] }
solution_2376 = { path = "problems/problems_2376", features = ["solution_2376"] }
solution_LCR_051 = { path = "problems/problems_LCR_051", features = ["solution_LCR_051"] }
solution_2374 = { path = "problems/problems_2374", features = ["solution_2374"] }
solution_LCR_076 = { path = "problems/problems_LCR_076", features = ["solution_LCR_076"] }
solution_LCR_095 = { path = "problems/problems_LCR_095", features = ["solution_LCR_095"] }
solution_997 = { path = "problems/problems_997", features = ["solution_997"] }
solution_LCR_024 = { path = "problems/problems_LCR_024", features = ["solution_LCR_024"] }
solution_LCR_109 = { path = "problems/problems_LCR_109", features = ["solution_LCR_109"] }
solution_1014 = { path = "problems/problems_1014", features = ["solution_1014"] }
solution_LCR_010 = { path = "problems/problems_LCR_010", features = ["solution_LCR_010"] }
solution_2207 = { path = "problems/problems_2207", features = ["solution_2207"] }
solution_LCR_017 = { path = "problems/problems_LCR_017", features = ["solution_LCR_017"] }
solution_2306 = { path = "problems/problems_2306", features = ["solution_2306"] }
solution_LCR_083 = { path = "problems/problems_LCR_083", features = ["solution_LCR_083"] }
solution_2535 = { path = "problems/problems_2535", features = ["solution_2535"] }
solution_LCR_096 = { path = "problems/problems_LCR_096", features = ["solution_LCR_096"] }
solution_2516 = { path = "problems/problems_2516", features = ["solution_2516"] }
solution_LCR_003 = { path = "problems/problems_LCR_003", features = ["solution_LCR_003"] }
solution_2286 = { path = "problems/problems_2286", features = ["solution_2286"] }
solution_LCR_033 = { path = "problems/problems_LCR_033", features = ["solution_LCR_033"] }
solution_LCR_044 = { path = "problems/problems_LCR_044", features = ["solution_LCR_044"] }
solution_2073 = { path = "problems/problems_2073", features = ["solution_2073"] }
solution_1845 = { path = "problems/problems_1845", features = ["solution_1845"] }
solution_983 = { path = "problems/problems_983", features = ["solution_983"] }
solution_1870 = { path = "problems/problems_1870", features = ["solution_1870"] }
solution_1928 = { path = "problems/problems_1928", features = ["solution_1928"] }
solution_1227 = { path = "problems/problems_1227", features = ["solution_1227"] }
solution_2187 = { path = "problems/problems_2187", features = ["solution_2187"] }
solution_LCR_052 = { path = "problems/problems_LCR_052", features = ["solution_LCR_052"] }
solution_134 = { path = "problems/problems_134", features = ["solution_134"] }
solution_LCR_110 = { path = "problems/problems_LCR_110", features = ["solution_LCR_110"] }
solution_871 = { path = "problems/problems_871", features = ["solution_871"] }
solution_1436 = { path = "problems/problems_1436", features = ["solution_1436"] }
solution_3171 = { path = "problems/problems_3171", features = ["solution_3171"] }
solution_3162 = { path = "problems/problems_3162", features = ["solution_3162"] }
solution_3164 = { path = "problems/problems_3164", features = ["solution_3164"] }
solution_3158 = { path = "problems/problems_3158", features = ["solution_3158"] }
solution_LCR_065 = { path = "problems/problems_LCR_065", features = ["solution_LCR_065"] }
solution_1884 = { path = "problems/problems_1884", features = ["solution_1884"] }
solution_LCR_097 = { path = "problems/problems_LCR_097", features = ["solution_LCR_097"] }
solution_887 = { path = "problems/problems_887", features = ["solution_887"] }
solution_3200 = { path = "problems/problems_3200", features = ["solution_3200"] }
solution_3194 = { path = "problems/problems_3194", features = ["solution_3194"] }
solution_3193 = { path = "problems/problems_3193", features = ["solution_3193"] }
solution_3191 = { path = "problems/problems_3191", features = ["solution_3191"] }
solution_3192 = { path = "problems/problems_3192", features = ["solution_3192"] }
solution_LCR_025 = { path = "problems/problems_LCR_025", features = ["solution_LCR_025"] }
solution_908 = { path = "problems/problems_908", features = ["solution_908"] }
solution_LCR_084 = { path = "problems/problems_LCR_084", features = ["solution_LCR_084"] }
solution_910 = { path = "problems/problems_910", features = ["solution_910"] }
solution_3184 = { path = "problems/problems_3184", features = ["solution_3184"] }
solution_3185 = { path = "problems/problems_3185", features = ["solution_3185"] }
solution_3175 = { path = "problems/problems_3175", features = ["solution_3175"] }
solution_3180 = { path = "problems/problems_3180", features = ["solution_3180"] }
solution_3181 = { path = "problems/problems_3181", features = ["solution_3181"] }
solution_684 = { path = "problems/problems_684", features = ["solution_684"] }
solution_LCR_053 = { path = "problems/problems_LCR_053", features = ["solution_LCR_053"] }
solution_3211 = { path = "problems/problems_3211", features = ["solution_3211"] }
solution_3216 = { path = "problems/problems_3216", features = ["solution_3216"] }
solution_3259 = { path = "problems/problems_3259", features = ["solution_3259"] }
solution_2278 = { path = "problems/problems_2278", features = ["solution_2278"] }
solution_2140 = { path = "problems/problems_2140", features = ["solution_2140"] }
solution_2873 = { path = "problems/problems_2873", features = ["solution_2873"] }
solution_2874 = { path = "problems/problems_2874", features = ["solution_2874"] }
solution_344 = { path = "problems/problems_344", features = ["solution_344"] }
solution_75 = { path = "problems/problems_75", features = ["solution_75"] }
solution_779 = { path = "problems/problems_779", features = ["solution_779"] }
solution_3304 = { path = "problems/problems_3304", features = ["solution_3304"] }
solution_3307 = { path = "problems/problems_3307", features = ["solution_3307"] }
solution_1394 = { path = "problems/problems_1394", features = ["solution_1394"] }
solution_1865 = { path = "problems/problems_1865", features = ["solution_1865"] }
solution_1353 = { path = "problems/problems_1353", features = ["solution_1353"] }
solution_1751 = { path = "problems/problems_1751", features = ["solution_1751"] }
solution_3439 = { path = "problems/problems_3439", features = ["solution_3439"] }
solution_3440 = { path = "problems/problems_3440", features = ["solution_3440"] }
solution_3169 = { path = "problems/problems_3169", features = ["solution_3169"] }
solution_1900 = { path = "problems/problems_1900", features = ["solution_1900"] }
solution_2410 = { path = "problems/problems_2410", features = ["solution_2410"] }
solution_1290 = { path = "problems/problems_1290", features = ["solution_1290"] }
solution_3136 = { path = "problems/problems_3136", features = ["solution_3136"] }
solution_3201 = { path = "problems/problems_3201", features = ["solution_3201"] }
solution_3202 = { path = "problems/problems_3202", features = ["solution_3202"] }
solution_2163 = { path = "problems/problems_2163", features = ["solution_2163"] }
solution_1233 = { path = "problems/problems_1233", features = ["solution_1233"] }
solution_1948 = { path = "problems/problems_1948", features = ["solution_1948"] }
solution_1957 = { path = "problems/problems_1957", features = ["solution_1957"] }
solution_1695 = { path = "problems/problems_1695", features = ["solution_1695"] }
solution_1717 = { path = "problems/problems_1717", features = ["solution_1717"] }
solution_2322 = { path = "problems/problems_2322", features = ["solution_2322"] }
solution_3487 = { path = "problems/problems_3487", features = ["solution_3487"] }
solution_3480 = { path = "problems/problems_3480", features = ["solution_3480"] }
solution_2210 = { path = "problems/problems_2210", features = ["solution_2210"] }
solution_2044 = { path = "problems/problems_2044", features = ["solution_2044"] }
solution_2411 = { path = "problems/problems_2411", features = ["solution_2411"] }
solution_2419 = { path = "problems/problems_2419", features = ["solution_2419"] }
solution_2683 = { path = "problems/problems_2683", features = ["solution_2683"] }
solution_118 = { path = "problems/problems_118", features = ["solution_118"] }
solution_2561 = { path = "problems/problems_2561", features = ["solution_2561"] }
solution_2106 = { path = "problems/problems_2106", features = ["solution_2106"] }
solution_904 = { path = "problems/problems_904", features = ["solution_904"] }
solution_3477 = { path = "problems/problems_3477", features = ["solution_3477"] }
solution_3479 = { path = "problems/problems_3479", features = ["solution_3479"] }
solution_3363 = { path = "problems/problems_3363", features = ["solution_3363"] }
solution_808 = { path = "problems/problems_808", features = ["solution_808"] }
solution_231 = { path = "problems/problems_231", features = ["solution_231"] }
solution_869 = { path = "problems/problems_869", features = ["solution_869"] }
solution_2438 = { path = "problems/problems_2438", features = ["solution_2438"] }
solution_2787 = { path = "problems/problems_2787", features = ["solution_2787"] }
solution_326 = { path = "problems/problems_326", features = ["solution_326"] }
solution_1780 = { path = "problems/problems_1780", features = ["solution_1780"] }
solution_342 = { path = "problems/problems_342", features = ["solution_342"] }
solution_1323 = { path = "problems/problems_1323", features = ["solution_1323"] }
solution_837 = { path = "problems/problems_837", features = ["solution_837"] }
solution_679 = { path = "problems/problems_679", features = ["solution_679"] }
solution_2348 = { path = "problems/problems_2348", features = ["solution_2348"] }
solution_1277 = { path = "problems/problems_1277", features = ["solution_1277"] }
solution_1504 = { path = "problems/problems_1504", features = ["solution_1504"] }
solution_3195 = { path = "problems/problems_3195", features = ["solution_3195"] }
solution_3197 = { path = "problems/problems_3197", features = ["solution_3197"] }
solution_1493 = { path = "problems/problems_1493", features = ["solution_1493"] }
solution_498 = { path = "problems/problems_498", features = ["solution_498"] }
solution_3000 = { path = "problems/problems_3000", features = ["solution_3000"] }
solution_3459 = { path = "problems/problems_3459", features = ["solution_3459"] }
solution_3446 = { path = "problems/problems_3446", features = ["solution_3446"] }
solution_3021 = { path = "problems/problems_3021", features = ["solution_3021"] }
solution_36 = { path = "problems/problems_36", features = ["solution_36"] }
solution_37 = { path = "problems/problems_37", features = ["solution_37"] }
solution_1792 = { path = "problems/problems_1792", features = ["solution_1792"] }
solution_3025 = { path = "problems/problems_3025", features = ["solution_3025"] }
solution_3027 = { path = "problems/problems_3027", features = ["solution_3027"] }
solution_3516 = { path = "problems/problems_3516", features = ["solution_3516"] }
solution_2749 = { path = "problems/problems_2749", features = ["solution_2749"] }
solution_3495 = { path = "problems/problems_3495", features = ["solution_3495"] }
solution_1304 = { path = "problems/problems_1304", features = ["solution_1304"] }
solution_1317 = { path = "problems/problems_1317", features = ["solution_1317"] }
solution_2327 = { path = "problems/problems_2327", features = ["solution_2327"] }
solution_1733 = { path = "problems/problems_1733", features = ["solution_1733"] }
solution_2785 = { path = "problems/problems_2785", features = ["solution_2785"] }
solution_3227 = { path = "problems/problems_3227", features = ["solution_3227"] }
solution_3541 = { path = "problems/problems_3541", features = ["solution_3541"] }
solution_966 = { path = "problems/problems_966", features = ["solution_966"] }
solution_1935 = { path = "problems/problems_1935", features = ["solution_1935"] }
solution_2197 = { path = "problems/problems_2197", features = ["solution_2197"] }
solution_2349 = { path = "problems/problems_2349", features = ["solution_2349"] }
solution_3408 = { path = "problems/problems_3408", features = ["solution_3408"] }
solution_3484 = { path = "problems/problems_3484", features = ["solution_3484"] }
solution_3508 = { path = "problems/problems_3508", features = ["solution_3508"] }
solution_1912 = { path = "problems/problems_1912", features = ["solution_1912"] }
solution_3005 = { path = "problems/problems_3005", features = ["solution_3005"] }
solution_165 = { path = "problems/problems_165", features = ["solution_165"] }
solution_166 = { path = "problems/problems_166", features = ["solution_166"] }
solution_120 = { path = "problems/problems_120", features = ["solution_120"] }
solution_611 = { path = "problems/problems_611", features = ["solution_611"] }
solution_812 = { path = "problems/problems_812", features = ["solution_812"] }
solution_976 = { path = "problems/problems_976", features = ["solution_976"] }
solution_1039 = { path = "problems/problems_1039", features = ["solution_1039"] }
solution_2221 = { path = "problems/problems_2221", features = ["solution_2221"] }
solution_1518 = { path = "problems/problems_1518", features = ["solution_1518"] }
solution_3100 = { path = "problems/problems_3100", features = ["solution_3100"] }
solution_407 = { path = "problems/problems_407", features = ["solution_407"] }
solution_11 = { path = "problems/problems_11", features = ["solution_11"] }
solution_417 = { path = "problems/problems_417", features = ["solution_417"] }
solution_778 = { path = "problems/problems_778", features = ["solution_778"] }
solution_1488 = { path = "problems/problems_1488", features = ["solution_1488"] }
solution_2300 = { path = "problems/problems_2300", features = ["solution_2300"] }
solution_3494 = { path = "problems/problems_3494", features = ["solution_3494"] }
solution_3147 = { path = "problems/problems_3147", features = ["solution_3147"] }
solution_3186 = { path = "problems/problems_3186", features = ["solution_3186"] }
solution_3539 = { path = "problems/problems_3539", features = ["solution_3539"] }
solution_2273 = { path = "problems/problems_2273", features = ["solution_2273"] }
solution_3349 = { path = "problems/problems_3349", features = ["solution_3349"] }
solution_3350 = { path = "problems/problems_3350", features = ["solution_3350"] }
solution_2598 = { path = "problems/problems_2598", features = ["solution_2598"] }
solution_3003 = { path = "problems/problems_3003", features = ["solution_3003"] }
solution_3397 = { path = "problems/problems_3397", features = ["solution_3397"] }
solution_1625 = { path = "problems/problems_1625", features = ["solution_1625"] }
solution_2011 = { path = "problems/problems_2011", features = ["solution_2011"] }
solution_3346 = { path = "problems/problems_3346", features = ["solution_3346"] }
solution_3347 = { path = "problems/problems_3347", features = ["solution_3347"] }
solution_3461 = { path = "problems/problems_3461", features = ["solution_3461"] }
solution_2048 = { path = "problems/problems_2048", features = ["solution_2048"] }
solution_1716 = { path = "problems/problems_1716", features = ["solution_1716"] }
solution_2043 = { path = "problems/problems_2043", features = ["solution_2043"] }
solution_2125 = { path = "problems/problems_2125", features = ["solution_2125"] }
solution_3354 = { path = "problems/problems_3354", features = ["solution_3354"] }
solution_3370 = { path = "problems/problems_3370", features = ["solution_3370"] }
solution_1526 = { path = "problems/problems_1526", features = ["solution_1526"] }
solution_3289 = { path = "problems/problems_3289", features = ["solution_3289"] }
solution_3217 = { path = "problems/problems_3217", features = ["solution_3217"] }
solution_2257 = { path = "problems/problems_2257", features = ["solution_2257"] }
solution_1578 = { path = "problems/problems_1578", features = ["solution_1578"] }
solution_3318 = { path = "problems/problems_3318", features = ["solution_3318"] }
solution_3321 = { path = "problems/problems_3321", features = ["solution_3321"] }
solution_3607 = { path = "problems/problems_3607", features = ["solution_3607"] }
solution_2528 = { path = "problems/problems_2528", features = ["solution_2528"] }
solution_1611 = { path = "problems/problems_1611", features = ["solution_1611"] }
solution_2169 = { path = "problems/problems_2169", features = ["solution_2169"] }
solution_3542 = { path = "problems/problems_3542", features = ["solution_3542"] }
solution_474 = { path = "problems/problems_474", features = ["solution_474"] }
solution_2654 = { path = "problems/problems_2654", features = ["solution_2654"] }
solution_3228 = { path = "problems/problems_3228", features = ["solution_3228"] }
solution_2536 = { path = "problems/problems_2536", features = ["solution_2536"] }
solution_3234 = { path = "problems/problems_3234", features = ["solution_3234"] }
solution_1513 = { path = "problems/problems_1513", features = ["solution_1513"] }
solution_1437 = { path = "problems/problems_1437", features = ["solution_1437"] }
solution_717 = { path = "problems/problems_717", features = ["solution_717"] }
solution_2154 = { path = "problems/problems_2154", features = ["solution_2154"] }
solution_757 = { path = "problems/problems_757", features = ["solution_757"] }
solution_1930 = { path = "problems/problems_1930", features = ["solution_1930"] }
solution_3190 = { path = "problems/problems_3190", features = ["solution_3190"] }
solution_1262 = { path = "problems/problems_1262", features = ["solution_1262"] }
solution_1018 = { path = "problems/problems_1018", features = ["solution_1018"] }
solution_1015 = { path = "problems/problems_1015", features = ["solution_1015"] }
solution_2435 = { path = "problems/problems_2435", features = ["solution_2435"] }
solution_3381 = { path = "problems/problems_3381", features = ["solution_3381"] }
solution_2872 = { path = "problems/problems_2872", features = ["solution_2872"] }
solution_3512 = { path = "problems/problems_3512", features = ["solution_3512"] }
solution_1590 = { path = "problems/problems_1590", features = ["solution_1590"] }
solution_2141 = { path = "problems/problems_2141", features = ["solution_2141"] }
solution_3623 = { path = "problems/problems_3623", features = ["solution_3623"] }
solution_3625 = { path = "problems/problems_3625", features = ["solution_3625"] }
solution_2211 = { path = "problems/problems_2211", features = ["solution_2211"] }
solution_3432 = { path = "problems/problems_3432", features = ["solution_3432"] }
solution_3578 = { path = "problems/problems_3578", features = ["solution_3578"] }
solution_1523 = { path = "problems/problems_1523", features = ["solution_1523"] }
solution_1925 = { path = "problems/problems_1925", features = ["solution_1925"] }
solution_3583 = { path = "problems/problems_3583", features = ["solution_3583"] }
solution_3577 = { path = "problems/problems_3577", features = ["solution_3577"] }
solution_3531 = { path = "problems/problems_3531", features = ["solution_3531"] }
solution_3433 = { path = "problems/problems_3433", features = ["solution_3433"] }
solution_3606 = { path = "problems/problems_3606", features = ["solution_3606"] }
solution_2147 = { path = "problems/problems_2147", features = ["solution_2147"] }
solution_2110 = { path = "problems/problems_2110", features = ["solution_2110"] }
solution_3562 = { path = "problems/problems_3562", features = ["solution_3562"] }
solution_3573 = { path = "problems/problems_3573", features = ["solution_3573"] }
solution_Interview_08__01 = { path = "problems/problems_Interview_08__01", features = ["solution_Interview_08__01"] }
solution_3652 = { path = "problems/problems_3652", features = ["solution_3652"] }
solution_Interview_16__01 = { path = "problems/problems_Interview_16__01", features = ["solution_Interview_16__01"] }
solution_2092 = { path = "problems/problems_2092", features = ["solution_2092"] }
solution_Interview_16__02 = { path = "problems/problems_Interview_16__02", features = ["solution_Interview_16__02"] }
solution_944 = { path = "problems/problems_944", features = ["solution_944"] }
solution_Interview_08__02 = { path = "problems/problems_Interview_08__02", features = ["solution_Interview_08__02"] }
solution_Interview_16__03 = { path = "problems/problems_Interview_16__03", features = ["solution_Interview_16__03"] }
solution_955 = { path = "problems/problems_955", features = ["solution_955"] }
solution_Interview_02__01 = { path = "problems/problems_Interview_02__01", features = ["solution_Interview_02__01"] }
solution_Interview_10__01 = { path = "problems/problems_Interview_10__01", features = ["solution_Interview_10__01"] }
solution_960 = { path = "problems/problems_960", features = ["solution_960"] }
solution_Interview_16__04 = { path = "problems/problems_Interview_16__04", features = ["solution_Interview_16__04"] }
solution_2054 = { path = "problems/problems_2054", features = ["solution_2054"] }
solution_Interview_03__02 = { path = "problems/problems_Interview_03__02", features = ["solution_Interview_03__02"] }
solution_3074 = { path = "problems/problems_3074", features = ["solution_3074"] }
solution_Interview_05__02 = { path = "problems/problems_Interview_05__02", features = ["solution_Interview_05__02"] }
solution_3075 = { path = "problems/problems_3075", features = ["solution_3075"] }
solution_Interview_08__03 = { path = "problems/problems_Interview_08__03", features = ["solution_Interview_08__03"] }
solution_2483 = { path = "problems/problems_2483", features = ["solution_2483"] }
solution_Interview_16__05 = { path = "problems/problems_Interview_16__05", features = ["solution_Interview_16__05"] }
solution_2402 = { path = "problems/problems_2402", features = ["solution_2402"] }
solution_Interview_16__06 = { path = "problems/problems_Interview_16__06", features = ["solution_Interview_16__06"] }
solution_Interview_08__04 = { path = "problems/problems_Interview_08__04", features = ["solution_Interview_08__04"] }
solution_1351 = { path = "problems/problems_1351", features = ["solution_1351"] }