summaryrefslogtreecommitdiffstats
path: root/Day 2/Untitled.py
diff options
context:
space:
mode:
authorNSDepression <179435306+NSDepression@users.noreply.github.com>2025-12-03 12:02:54 +0530
committerNSDepression <179435306+NSDepression@users.noreply.github.com>2025-12-03 12:02:54 +0530
commita41aa05396f8cb83289f8b95a267dd062f6a9484 (patch)
tree2c820e50b187dfaa3b5a30350624342ab4057945 /Day 2/Untitled.py
parent881957f4f0865000ab978222c9cb694c73180995 (diff)
downloadAoC-2025-a41aa05396f8cb83289f8b95a267dd062f6a9484.tar.gz
AoC-2025-a41aa05396f8cb83289f8b95a267dd062f6a9484.zip
Day 2.2 oopsHEADmain
Diffstat (limited to 'Day 2/Untitled.py')
-rw-r--r--Day 2/Untitled.py21
1 files changed, 0 insertions, 21 deletions
diff --git a/Day 2/Untitled.py b/Day 2/Untitled.py
deleted file mode 100644
index 536e83b..0000000
--- a/Day 2/Untitled.py
+++ /dev/null
@@ -1,21 +0,0 @@
-
-
-with open ('input.txt', "r") as file:
- content = file.read().strip()
-range_groups = content.split(',')
-st = []
-sum = 0
-
-for group in range_groups:
- print (f"Range: {group}")
- distinct_nums = group.split("-")
- first_value = int(distinct_nums[0])
- last_value = int(distinct_nums[1])
- for num in range(first_value, last_value + 1):
- s = str(num)
- is_repeating = s in (s + s) [1:-1]
- if is_repeating==True:
- st.append(num)
-for n in st:
- sum += n
-print (f"Total Sum: {sum} ") \ No newline at end of file