From 94d0033ed89bb5bfb6500051296892fb7cea6c29 Mon Sep 17 00:00:00 2001 From: Sebastiano Tronto Date: Mon, 25 Dec 2023 17:56:34 +0100 Subject: Small cleanup --- 2023/22/22b.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to '2023/22/22b.c') diff --git a/2023/22/22b.c b/2023/22/22b.c index bbafdfa..7941554 100644 --- a/2023/22/22b.c +++ b/2023/22/22b.c @@ -1,12 +1,9 @@ -#include #include #include #include -#include #define N 1500 #define M 340 -#define MAX(x,y) ((x)>(y)?(x):(y)) #define isnum(c) (c == '-' || (c >= '0' && c <= '9')) @@ -78,7 +75,7 @@ int main() { drop(j); for (int i = 0; i < n; i++) - x += homanyfall(i); + x += howmanyfall(i); printf("%d\n", x); return 0; -- cgit v1.3