diff --git a/deno.json b/deno.json index e6a95e9..6b4eaa3 100644 --- a/deno.json +++ b/deno.json @@ -27,6 +27,7 @@ "tasks": { "Day01": "cd ./src/01_Calories && deno run --allow-read=./input.txt Calories.ts", "Day02": "cd ./src/02_RockPaperScissors && deno run --allow-read=./input.txt RockPaperScissors.ts", - "Day03": "cd ./src/03_RucksackReorganization && deno run --allow-read=./input.txt RucksackReorganization.ts" + "Day03": "cd ./src/03_RucksackReorganization && deno run --allow-read=./input.txt RucksackReorganization.ts", + "Day04": "cd ./src/04_CampCleanup && deno run --allow-read=./input.txt CampCleanup.ts" } } diff --git a/src/04_CampCleanup/CampCleanup.ts b/src/04_CampCleanup/CampCleanup.ts new file mode 100644 index 0000000..94d5ff0 --- /dev/null +++ b/src/04_CampCleanup/CampCleanup.ts @@ -0,0 +1,30 @@ +const input = Deno.readTextFileSync('./input.txt').trimEnd().split('\n'); + +function includes(left: [number, number], right: [number, number]): number { + if ( + (left[0] <= right[0] && left[1] >= right[1]) || + (left[0] >= right[0] && left[1] <= right[1]) + ) { + return 1; + } + return 0; +} + +function overlap(left: [number, number], right: [number, number]): number { + if (left[0] > right[1] || left[1] < right[0]) return 0; + return 1; +} + +let includeScore = 0; +let overlapScore = 0; +for (const line of input) { + const sections = line.match(/^(\d+)-(\d+),(\d+)-(\d+)$/)!.splice(1); + const [startLeft, endLeft, startRight, endRight] = sections.map((id) => { + return parseInt(id); + }) as [number, number, number, number]; + includeScore += includes([startLeft, endLeft], [startRight, endRight]); + overlapScore += overlap([startLeft, endLeft], [startRight, endRight]); +} + +console.log(includeScore); +console.log(overlapScore); diff --git a/src/04_CampCleanup/input.txt b/src/04_CampCleanup/input.txt new file mode 100644 index 0000000..fc3c167 --- /dev/null +++ b/src/04_CampCleanup/input.txt @@ -0,0 +1,1000 @@ +7-7,8-42 +2-95,2-94 +10-54,33-90 +23-24,24-40 +1-48,12-47 +9-27,9-26 +24-33,25-45 +16-26,15-26 +28-38,38-40 +26-27,27-48 +39-97,20-96 +21-73,21-73 +15-28,27-63 +6-91,91-91 +52-80,81-96 +18-99,17-83 +90-97,91-96 +9-91,10-82 +8-97,9-99 +67-73,66-74 +48-63,11-63 +35-90,36-92 +9-94,1-9 +7-10,9-95 +19-46,18-47 +41-82,48-83 +35-81,36-84 +5-92,2-91 +54-94,53-94 +12-27,26-81 +17-26,8-14 +18-84,9-85 +49-64,65-82 +39-84,38-83 +20-65,64-66 +16-95,16-80 +31-36,37-78 +19-71,19-19 +12-90,11-89 +12-47,11-48 +10-11,10-74 +30-90,6-89 +17-26,16-25 +15-35,14-36 +29-29,28-28 +34-34,26-33 +11-26,12-76 +94-95,29-94 +62-65,62-64 +58-61,9-59 +12-75,11-13 +8-20,11-24 +66-95,66-86 +36-37,37-91 +6-17,16-18 +13-94,94-94 +83-96,75-92 +12-81,12-80 +4-68,3-46 +85-87,66-86 +8-31,30-37 +4-94,2-5 +14-30,33-84 +22-92,21-22 +4-95,20-95 +35-78,35-78 +8-80,8-8 +3-69,23-76 +11-98,10-96 +11-85,20-83 +24-58,11-31 +7-96,8-97 +66-77,78-97 +40-86,40-87 +53-79,53-79 +37-46,36-38 +1-91,1-92 +14-21,9-14 +15-37,38-38 +3-58,1-58 +59-85,51-86 +1-69,3-70 +3-74,36-75 +34-74,35-86 +8-98,7-75 +79-86,78-98 +23-97,23-93 +1-2,2-92 +68-77,68-78 +4-57,1-57 +99-99,53-96 +15-62,61-88 +13-65,9-14 +25-82,82-82 +48-54,47-77 +16-26,27-97 +16-18,17-91 +10-95,2-9 +98-99,7-98 +19-36,14-20 +6-30,7-84 +1-1,1-99 +24-52,11-51 +92-92,45-88 +88-89,88-90 +4-84,3-53 +37-52,36-38 +20-93,6-93 +63-63,17-62 +8-22,5-9 +52-77,52-52 +44-46,45-87 +14-82,13-74 +56-68,41-68 +80-80,16-80 +4-95,3-94 +57-95,63-96 +77-94,75-93 +55-91,91-91 +15-15,1-15 +44-98,45-45 +14-21,6-13 +4-42,2-4 +5-90,8-60 +32-62,33-50 +18-51,18-54 +4-30,3-4 +28-51,28-50 +93-96,31-94 +3-15,14-81 +15-74,84-89 +5-93,4-92 +1-5,6-90 +53-55,54-85 +20-90,20-57 +97-98,48-97 +27-48,26-36 +16-47,16-48 +94-96,88-94 +43-58,59-85 +88-90,10-84 +18-62,17-93 +14-97,14-98 +19-81,8-80 +13-94,12-89 +65-98,64-66 +36-48,35-49 +26-79,36-87 +54-62,53-69 +14-26,14-26 +18-71,70-71 +31-45,7-67 +3-94,1-4 +60-81,61-82 +16-66,66-66 +46-95,94-94 +10-89,10-90 +29-86,11-28 +55-96,54-56 +7-52,9-76 +65-93,83-92 +61-74,61-74 +72-93,93-93 +45-74,74-74 +19-98,20-98 +5-95,6-96 +21-96,96-97 +33-73,23-33 +68-85,15-42 +10-99,10-10 +4-96,93-97 +86-97,3-86 +46-86,47-87 +21-94,18-93 +64-64,28-64 +42-43,42-94 +52-97,53-98 +2-41,2-41 +12-80,11-13 +55-95,55-96 +12-35,21-36 +19-87,20-86 +56-67,37-57 +34-51,33-52 +9-92,8-91 +31-99,3-99 +23-24,24-84 +11-11,11-52 +12-72,11-46 +85-93,18-92 +33-90,99-99 +91-94,92-95 +14-68,68-69 +45-88,45-89 +7-89,4-6 +23-33,24-93 +35-84,46-83 +8-81,8-81 +50-72,40-71 +6-80,41-79 +8-64,5-7 +25-49,24-24 +43-96,7-42 +3-92,3-92 +6-46,1-45 +13-57,12-56 +55-62,32-63 +28-32,21-39 +5-6,5-46 +2-87,2-86 +10-83,8-82 +14-69,13-69 +67-69,68-89 +55-91,28-39 +23-30,29-58 +35-35,35-62 +48-63,49-65 +4-80,1-79 +2-60,2-61 +30-75,97-98 +15-95,14-40 +40-41,40-40 +69-96,27-96 +6-96,7-98 +14-98,13-15 +5-5,5-83 +2-92,3-91 +73-91,84-90 +3-97,90-96 +3-97,35-98 +73-93,73-74 +32-79,32-51 +44-80,44-79 +6-53,5-84 +41-48,42-49 +32-86,31-85 +4-86,4-86 +3-59,27-60 +24-93,10-23 +35-59,34-84 +8-93,9-9 +34-69,53-68 +64-91,63-64 +4-45,3-5 +81-88,43-87 +7-30,35-75 +47-78,5-46 +51-51,51-74 +20-67,49-76 +53-80,52-53 +2-37,1-98 +16-99,15-97 +97-97,6-97 +9-99,9-98 +38-93,24-55 +20-77,78-78 +10-76,75-76 +41-56,1-55 +39-93,39-91 +87-93,15-30 +9-98,9-85 +14-53,53-53 +70-94,11-95 +97-98,39-97 +50-81,71-72 +55-62,55-82 +9-21,9-9 +47-84,46-57 +1-32,3-31 +17-77,3-18 +20-69,20-68 +10-61,10-10 +18-97,97-98 +27-97,99-99 +10-60,1-60 +26-78,1-66 +4-10,11-11 +7-77,6-78 +29-75,74-75 +62-62,61-84 +3-82,82-82 +38-43,38-42 +2-84,3-85 +72-83,83-84 +40-92,98-98 +84-92,17-91 +36-85,14-35 +30-32,31-70 +11-61,12-12 +6-81,92-98 +16-93,16-93 +7-63,6-62 +4-98,4-97 +93-94,10-93 +19-30,18-30 +17-18,19-55 +53-98,50-98 +3-97,97-97 +2-97,2-98 +33-77,2-32 +52-53,10-52 +14-16,15-91 +29-99,17-98 +3-4,5-96 +4-92,3-4 +37-56,2-36 +28-52,26-99 +12-97,12-97 +14-43,44-72 +90-94,91-93 +5-80,10-81 +21-77,77-78 +39-91,42-90 +40-51,28-50 +4-91,5-78 +34-92,33-92 +6-8,5-99 +7-7,7-39 +54-88,53-53 +56-84,55-83 +7-80,6-8 +9-17,17-22 +19-50,51-53 +42-91,2-90 +26-27,27-69 +23-58,15-22 +22-92,25-93 +4-5,4-81 +75-89,76-76 +16-74,15-73 +3-70,4-69 +30-48,36-69 +23-40,23-94 +35-73,35-75 +78-86,31-87 +61-87,60-61 +72-91,2-92 +88-98,4-86 +14-25,13-17 +35-45,35-98 +7-92,7-99 +9-78,19-77 +16-92,12-42 +4-19,5-20 +1-95,3-96 +92-92,12-92 +80-80,80-84 +12-73,12-73 +4-92,5-93 +19-83,18-82 +12-13,12-14 +2-97,2-97 +6-93,7-58 +34-57,56-73 +6-39,13-98 +7-72,3-71 +11-86,13-86 +50-56,11-55 +12-31,19-19 +4-94,1-95 +44-93,1-94 +80-80,58-79 +7-95,7-96 +5-40,6-39 +7-57,19-57 +70-74,70-81 +7-91,1-91 +1-98,1-99 +1-98,56-61 +36-87,36-87 +1-43,8-44 +1-63,63-63 +2-91,1-82 +8-88,88-89 +53-54,2-53 +32-91,32-85 +3-88,88-89 +3-88,1-2 +33-71,29-34 +40-74,50-75 +8-12,11-53 +13-80,5-80 +2-12,4-11 +2-91,1-35 +4-77,3-76 +36-86,19-85 +27-53,28-52 +44-57,58-68 +61-89,58-88 +41-42,42-85 +91-92,27-91 +1-35,3-71 +40-40,10-40 +47-53,50-64 +77-78,31-77 +21-22,23-31 +19-69,18-70 +21-98,21-21 +24-70,24-70 +55-57,52-53 +53-84,53-53 +71-77,71-78 +13-48,7-47 +4-97,4-4 +4-28,37-73 +36-40,35-39 +9-18,28-90 +42-95,95-96 +11-21,7-20 +19-84,18-83 +5-69,1-4 +37-65,3-38 +2-98,1-99 +93-99,9-94 +44-93,44-93 +7-11,6-70 +8-94,93-95 +13-84,17-84 +11-73,30-74 +3-5,5-96 +55-80,79-91 +4-6,5-71 +74-77,74-78 +47-54,47-54 +52-72,73-80 +11-19,18-73 +42-44,43-83 +53-67,52-52 +2-42,18-86 +18-18,19-67 +12-91,12-95 +19-73,20-74 +47-97,96-98 +14-62,15-63 +14-69,3-70 +33-52,33-52 +32-63,62-64 +3-7,8-84 +47-48,12-47 +8-8,9-9 +43-92,20-20 +44-91,90-92 +62-68,63-71 +6-49,5-48 +14-24,3-23 +28-94,23-95 +82-91,27-82 +13-84,3-85 +1-92,1-87 +58-96,58-83 +99-99,7-98 +6-44,15-43 +72-72,17-71 +22-95,96-97 +10-92,10-92 +56-56,56-97 +79-81,80-83 +4-89,95-99 +10-76,14-72 +20-66,20-65 +4-76,4-77 +5-64,2-6 +17-78,4-77 +33-41,40-66 +46-54,46-72 +18-97,6-14 +1-99,21-96 +1-39,38-90 +15-25,7-17 +23-83,23-82 +23-82,24-60 +8-54,54-83 +42-60,12-31 +25-96,13-87 +15-20,14-98 +80-80,21-79 +2-88,2-2 +91-94,32-90 +12-98,10-12 +9-83,10-84 +17-39,19-40 +39-48,40-74 +20-84,1-19 +42-77,42-76 +29-33,31-34 +11-86,12-88 +2-99,2-99 +38-95,19-54 +4-4,5-90 +3-93,21-93 +58-88,88-89 +15-98,9-12 +9-76,9-75 +9-9,10-32 +1-30,1-31 +2-81,2-82 +28-72,89-97 +4-40,39-90 +23-54,53-55 +26-95,27-95 +4-84,8-83 +24-26,28-31 +32-57,32-72 +46-61,36-60 +22-80,21-21 +9-73,8-74 +15-30,21-64 +42-97,42-42 +20-31,20-20 +5-9,9-97 +39-83,11-84 +45-83,44-84 +72-95,71-73 +12-90,8-13 +5-7,7-89 +79-81,80-81 +19-20,20-58 +4-30,3-5 +30-67,66-68 +2-2,5-96 +23-97,23-93 +45-98,43-97 +53-93,53-92 +10-74,9-10 +66-70,24-66 +15-53,48-65 +31-96,31-96 +11-79,10-80 +43-76,43-53 +74-93,7-94 +7-45,8-79 +76-85,85-85 +1-56,56-56 +85-90,86-90 +24-43,12-43 +8-9,8-53 +56-94,55-57 +28-76,29-77 +12-90,10-13 +38-90,40-42 +48-99,59-98 +81-81,18-81 +73-73,72-87 +29-94,94-95 +7-46,46-46 +94-94,3-94 +4-89,4-89 +66-71,67-70 +19-62,63-87 +16-16,16-34 +22-98,8-97 +43-87,42-44 +5-35,1-34 +32-56,95-97 +7-46,6-98 +76-88,67-75 +7-62,6-8 +29-75,30-76 +55-99,34-55 +18-57,3-30 +91-92,8-91 +4-95,98-98 +55-55,45-57 +35-88,34-87 +21-98,21-99 +42-44,43-76 +14-15,14-76 +36-90,36-87 +8-14,7-14 +26-99,25-98 +28-50,14-39 +39-64,39-95 +3-50,2-22 +58-84,57-59 +10-50,9-11 +14-42,13-15 +51-65,50-54 +47-82,83-93 +76-76,12-76 +14-38,3-37 +15-44,14-45 +32-97,4-98 +30-61,31-62 +42-84,5-37 +20-99,19-21 +13-37,14-45 +19-72,11-20 +22-98,22-98 +61-96,35-62 +54-70,46-69 +70-82,68-74 +25-73,25-73 +42-44,41-46 +27-97,26-27 +1-80,1-81 +6-98,3-5 +60-61,37-60 +20-80,5-21 +29-78,30-44 +8-76,7-75 +45-62,45-96 +8-99,7-7 +46-72,46-46 +68-86,67-83 +9-25,8-24 +11-55,10-12 +19-82,20-83 +20-98,19-97 +57-59,55-59 +80-82,81-87 +5-85,84-86 +80-94,2-63 +29-81,80-82 +35-35,36-71 +41-45,40-77 +38-97,11-98 +2-99,98-99 +24-26,25-48 +60-61,35-60 +45-70,44-84 +17-49,49-50 +69-99,68-98 +25-70,70-99 +47-50,39-51 +67-85,67-85 +47-98,47-99 +98-98,56-98 +21-98,3-99 +5-94,1-2 +51-98,19-97 +52-72,73-77 +36-74,24-44 +8-18,70-95 +7-83,96-96 +1-94,2-95 +10-24,25-44 +14-53,13-43 +41-73,63-66 +56-59,57-61 +65-66,64-77 +42-42,41-88 +3-6,2-4 +52-93,51-92 +22-84,21-85 +20-99,8-20 +6-84,84-85 +53-66,30-66 +27-31,13-29 +12-55,11-12 +7-85,76-86 +94-99,53-93 +2-3,4-85 +35-37,36-41 +13-78,89-93 +22-84,21-83 +93-95,11-68 +15-72,53-94 +5-58,5-5 +98-98,55-92 +20-59,21-60 +6-96,8-96 +7-33,7-32 +69-69,36-68 +24-97,10-96 +56-96,63-95 +3-61,3-94 +35-59,34-39 +21-52,21-53 +26-92,26-27 +53-81,52-82 +17-63,16-18 +42-42,42-56 +7-67,7-8 +43-92,43-92 +2-51,25-57 +5-7,6-90 +14-71,71-85 +16-87,2-8 +24-51,18-44 +49-51,50-60 +3-98,1-4 +3-96,1-2 +8-76,8-95 +32-95,32-94 +46-87,19-86 +77-96,28-66 +10-71,71-94 +3-97,3-96 +10-61,1-11 +13-81,14-82 +26-99,27-69 +40-69,40-69 +9-61,1-8 +19-23,22-99 +3-6,6-85 +24-95,94-96 +76-77,34-77 +6-79,6-7 +22-68,21-60 +12-84,84-85 +7-72,7-81 +10-74,49-73 +47-89,46-48 +2-2,2-96 +20-82,36-81 +25-62,24-61 +14-25,24-88 +10-57,28-57 +58-89,59-93 +5-9,9-10 +18-18,18-90 +62-84,24-85 +8-62,8-63 +55-90,8-55 +2-93,1-92 +35-60,59-75 +24-93,32-92 +35-69,7-70 +4-93,5-92 +27-45,18-27 +30-98,24-24 +7-90,6-91 +72-93,72-83 +8-98,6-95 +35-75,35-74 +3-58,2-33 +17-98,98-98 +5-90,3-70 +13-25,12-14 +17-61,18-62 +25-54,12-53 +5-79,78-80 +8-85,87-94 +1-2,1-96 +55-64,55-65 +51-60,59-89 +2-54,2-2 +12-96,12-92 +18-99,17-62 +50-93,45-92 +41-91,41-91 +8-86,9-75 +34-46,47-47 +89-90,30-90 +65-88,65-88 +75-75,8-75 +1-93,6-93 +7-7,6-86 +94-98,37-92 +8-72,72-72 +14-33,14-14 +30-52,53-82 +25-81,17-25 +10-70,44-85 +9-34,34-45 +31-94,30-92 +55-84,55-83 +3-86,4-89 +27-32,28-32 +21-50,51-60 +9-80,27-81 +17-72,17-70 +49-49,51-87 +32-42,35-41 +3-6,4-40 +11-13,12-90 +42-63,18-64 +50-91,12-92 +7-90,90-98 +43-99,10-98 +53-63,55-57 +62-83,84-84 +1-58,4-82 +36-62,36-71 +80-91,8-77 +37-46,5-47 +5-7,6-78 +25-60,24-24 +16-62,16-95 +10-11,10-23 +2-13,12-53 +96-96,41-95 +33-48,32-48 +29-79,29-67 +17-30,31-90 +3-96,1-97 +2-99,6-98 +58-98,45-59 +72-74,72-72 +50-94,49-93 +2-6,13-87 +47-92,98-99 +49-90,33-91 +65-67,54-66 +8-40,2-7 +41-47,41-41 +12-87,11-43 +3-81,2-82 +13-25,13-25 +21-66,55-65 +3-50,34-51 +42-93,28-43 +57-89,57-57 +25-95,99-99 +7-98,97-98 +61-62,44-61 +70-71,3-70 +6-71,21-70 +16-54,8-17 +33-78,53-70 +19-21,20-70 +25-88,26-99 +2-35,34-71 +84-96,23-77 +6-97,4-31 +21-87,25-47 +31-38,38-82 +4-91,4-92 +81-81,1-81 +6-94,94-95 +2-11,1-3 +6-98,4-98 +41-74,74-74 +30-96,97-97 +15-91,15-92 +32-97,31-94 +9-48,6-47 +4-75,4-74 +33-49,49-49 +58-95,39-94 +6-99,5-53 +69-72,70-73 +2-91,89-90 +8-8,8-21 +2-11,9-10 +5-67,5-5 +21-58,20-59 +3-97,1-3 +56-62,57-76 +26-93,92-94 +98-98,95-96 +59-96,60-80 +76-94,51-77 +76-99,76-98 +10-83,28-84 +1-91,91-91 +9-58,3-57 +54-70,55-69 +70-71,8-71 +6-9,9-96 +53-65,53-66 +9-84,11-85 +29-77,29-78 +17-65,16-80 +16-74,2-73 +46-91,77-92 +11-66,12-25 +4-81,80-82 +5-48,52-56 +8-94,6-11 +13-88,89-99 +97-99,3-98 +83-85,72-86 +3-4,4-10 +21-43,21-89 +14-28,15-39 +79-79,7-79 +20-20,21-95 +4-80,8-95 +61-92,62-95 +37-37,11-36 +19-81,20-88 +20-40,20-40 +55-97,54-98 +72-93,10-94 +13-94,14-98 +15-16,16-30 +43-62,58-63 +1-2,3-90 +3-77,3-77 +5-39,2-38 +49-74,82-87 +17-24,23-24 +82-84,12-83 +11-90,31-90 +41-41,42-95 +53-73,79-92 +10-92,11-91 +64-69,64-64 +90-97,28-76 +8-98,8-95 +10-84,10-11 +27-78,20-79 +59-59,58-99 +15-54,24-90 +18-36,9-28 +51-52,24-53 +90-93,47-78 +8-17,16-77 +3-76,83-98 +25-62,24-25 +10-13,14-17 +5-35,10-34 +11-98,10-98 +22-70,22-71 +5-96,1-98 +13-63,30-62 +13-42,47-92 +2-98,2-89 +3-7,6-97 +42-47,42-42 +5-63,62-64 +13-96,15-97 +88-88,33-88 +49-70,48-69 +9-96,95-97 +3-86,45-74 +12-67,12-12 +7-87,8-92 +48-97,17-67 +40-60,38-59 +4-10,13-15 +8-81,9-80 +1-73,1-26 +1-3,3-74 +54-54,55-55 +24-34,35-93 +44-65,43-66 +15-15,15-98 +11-85,53-87 +13-73,13-28 +1-5,7-49 +8-54,8-89 +4-38,3-37 +43-94,93-95 +9-96,8-10 +40-77,27-41 +38-40,39-69 +4-62,52-67 +35-47,17-46 +33-92,30-32 +32-90,90-90 +2-87,2-87 +8-8,8-90 +65-69,69-70 +86-86,1-86 +71-93,4-51 +41-71,57-71 +68-85,60-84 +3-97,7-97 +98-98,12-98 +23-71,22-65 +42-54,44-54 +77-98,24-97 +81-84,83-84 +5-93,5-92 +1-99,97-98 +25-98,17-26 +19-99,19-97 +11-93,11-93 +12-95,10-13 +34-39,34-57 +25-39,14-38 +11-48,11-48 +84-91,1-83 +22-95,21-21 +1-1,3-91 +57-95,95-95 +12-99,6-98 +12-71,12-23 +89-96,13-70 +64-74,1-75 +19-91,19-90 +93-94,4-93 +20-89,89-89 +90-92,1-91 +7-98,8-28 +1-47,2-48 +99-99,1-99 +32-74,32-74 +5-8,4-89 +5-94,2-95 +58-92,91-92 +35-49,48-49 +24-73,74-92 +90-91,4-91 +24-90,18-91 +62-70,63-69 +16-88,87-88 +6-8,7-93 +7-98,8-67 +12-86,11-86 +64-86,63-63 +48-73,29-76 +3-35,31-34 +59-68,59-69 +11-98,10-12 +17-17,17-87 +6-88,6-87 +6-63,80-92