exercism-perl5

Repository for my Perl 5 Exercism exercises
git clone git://git.samirparikh.com/exercism-perl5
Log | Files | Refs

commit 004ed5852a0864bc247c7704b638bb1d7e0848fb
parent e61652e4b8820e795df8d92ccf24baecd5b37e66
Author: Samir Parikh <noreply@samirparikh.com>
Date:   Sat, 27 Nov 2021 16:53:38 +0000

get tests 1-5 of 6 to pass

Diffstat:
Mnucleotide-count/NucleotideCount.pm | 1-
1 file changed, 0 insertions(+), 1 deletion(-)

diff --git a/nucleotide-count/NucleotideCount.pm b/nucleotide-count/NucleotideCount.pm @@ -12,7 +12,6 @@ sub count_nucleotides { 'G' => 0, 'T' => 0 ); - #print "\$strand is $strand\n"; if ($strand =~ /[^ACGT]/) { return "Invalid nucleotide in strand"; } else {