Files
advent-of-code/day-9/main
Felipe Oliveira 0955a15c48 Start Day 9 🚀
2025-12-08 23:16:45 -03:00

13 lines
174 B
Python
Executable File

#!/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()