Remove whitespace

This commit is contained in:
2024-04-14 22:38:00 +03:00
parent a645a201d8
commit ec499b6cfc
4 changed files with 24 additions and 24 deletions

2
main.c
View File

@@ -51,7 +51,7 @@ int factor(int x)
{
if (x < 2)
return 1;
return factor(x - 1) + factor(x - 2);
}