since Run() is static, day01 can be called directly instead of being instantiated

This commit is contained in:
Stedd 2024-12-01 12:16:30 +01:00
parent 5fd685cc55
commit 436e02c1d8
1 changed files with 1 additions and 2 deletions

View File

@ -4,6 +4,5 @@
int main() int main()
{ {
day01 day01; day01::Run();
day01.Run();
} }