Start Day 9 🚀

This commit is contained in:
Felipe Oliveira
2025-12-08 23:16:45 -03:00
parent 6d1d86c7a9
commit 0955a15c48
2 changed files with 12 additions and 0 deletions

BIN
day-9/.main.swp Normal file

Binary file not shown.

12
day-9/main Executable file
View File

@@ -0,0 +1,12 @@
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""Advent of Code 2025
Day 9
"""
def main():
print('Advent of Code 2025 - Day 9')
if __name__ == '__main__':
main()