aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Smith <js5@sanger.ac.uk>2022-02-15 17:26:13 +0000
committerGitHub <noreply@github.com>2022-02-15 17:26:13 +0000
commita1541f88c4dd103ac7185d0e3eed932a3e5aebfc (patch)
tree1bacdc39a1ec5feb79cc43328a319da5e3a09213
parent4caf805c5014c401dfb0d7bfdac0dfccea066d75 (diff)
downloadperlweeklychallenge-club-a1541f88c4dd103ac7185d0e3eed932a3e5aebfc.tar.gz
perlweeklychallenge-club-a1541f88c4dd103ac7185d0e3eed932a3e5aebfc.tar.bz2
perlweeklychallenge-club-a1541f88c4dd103ac7185d0e3eed932a3e5aebfc.zip
Update README.md
-rw-r--r--challenge-152/james-smith/README.md1
1 files changed, 0 insertions, 1 deletions
diff --git a/challenge-152/james-smith/README.md b/challenge-152/james-smith/README.md
index 9aab95bd67..8c7c813547 100644
--- a/challenge-152/james-smith/README.md
+++ b/challenge-152/james-smith/README.md
@@ -47,7 +47,6 @@ sub min_path_total {
my @p = (0) x (1+@{$_[0]});
@p = map { $_ + $p[$p[0]<$p[1]?0:1], (shift @p)x 0 } @{$_} for reverse @{$_[0]};
$p[0];
-
}
```