aboutsummaryrefslogtreecommitdiff
path: root/2025/11/puzzle-1.awk
diff options
context:
space:
mode:
authorThomas Voss <thomas.voss@humanwave.nl> 2025-12-11 14:11:56 +0100
committerThomas Voss <thomas.voss@humanwave.nl> 2025-12-11 14:11:56 +0100
commit9d8ad5ed628bd86f5b7ff1149686916e9403c3d2 (patch)
tree8f30fc8f9aa85ba36fa98c723100cd8a107bc64d /2025/11/puzzle-1.awk
parent40fc3368e8d70b8279158fed2547f0025a4f6aa9 (diff)
Remove useless assignment
Diffstat (limited to '2025/11/puzzle-1.awk')
-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