aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-x2025/11/puzzle-1.awk1
1 files changed, 0 insertions, 1 deletions
diff --git a/2025/11/puzzle-1.awk b/2025/11/puzzle-1.awk
index 2969c24..aa752e1 100755
--- a/2025/11/puzzle-1.awk
+++ b/2025/11/puzzle-1.awk
@@ -4,7 +4,6 @@ function npaths(src, dst, n, i)
{
if (src == dst)
return 1;
- n = 0
for (i in paths[src])
n += npaths(paths[src][i], dst)
return n