argparse working

This commit is contained in:
Joshua Flores 2025-03-21 15:45:46 -04:00
parent 89a3c08a50
commit 3492294335
No known key found for this signature in database
GPG key ID: 69CA63D415549E19
5 changed files with 1057 additions and 0 deletions

14
solutions/2024/day01.py Executable file
View file

@ -0,0 +1,14 @@
#!/usr/bin/env python3
from aoc.common.lib import read_file
def main():
input_file = "../../data/24/01a.txt"
data = read_file(input_file)
print(data)
return
if __name__ == "__main__":
main()