feat: updates

This commit is contained in:
2025-09-03 00:12:36 +08:00
parent ad547a4ec9
commit a5fed6a5ef

View File

@@ -1,6 +1,6 @@
#!/usr/bin/env python3 #!/usr/bin/env python3
def is_leap_year(year): def is_leap_year(year: int):
return year % 4 == 0 and year % 100 != 0 or year % 400 == 0 return year % 4 == 0 and year % 100 != 0 or year % 400 == 0
if __name__ == "__main__": if __name__ == "__main__":