Sha256: 1787da55db6d30c17d75706636e7dc08fc5dfda3541a57bc2476c3a2f67a2093

Contents?: true

Size: 726 Bytes

Versions: 83

Compression:

Stored size: 726 Bytes

Contents

exercise: Luhn
version: 3
plan: 13
tests: |-
  for $c-data<cases>.values {
    given is-luhn-valid .<input><value> -> $result {
      subtest .<description>, {
        plan 2;
        isa-ok $result, Bool;
        is-deeply $result, .<expected>, 'Result matches expected';
      }
    }
  }

unit: module
example: |-
  sub is-luhn-valid ($input is copy) is export {
    $input ~~ s:g/\s+//;
    return False if $input.chars < 2 || $input ~~ /\D/;
    my @num = $input.split('', :skip-empty);
    @num.unshift: 0 if @num % 2;
    my $sum;
    for @num -> $a, $b {
      $sum += $a * 2;
      $sum -= 9 if $a * 2 > 9;
      $sum += $b;
    }
    return ($sum %% 10).so;
  }
stub: |-
  sub is-luhn-valid ($input) is export {
  }

Version data entries

83 entries across 83 versions & 1 rubygems

Version Path
trackler-2.2.1.139 tracks/perl6/exercises/luhn/.meta/exercise-data.yaml
trackler-2.2.1.138 tracks/perl6/exercises/luhn/.meta/exercise-data.yaml
trackler-2.2.1.137 tracks/perl6/exercises/luhn/.meta/exercise-data.yaml
trackler-2.2.1.136 tracks/perl6/exercises/luhn/.meta/exercise-data.yaml
trackler-2.2.1.135 tracks/perl6/exercises/luhn/.meta/exercise-data.yaml
trackler-2.2.1.134 tracks/perl6/exercises/luhn/.meta/exercise-data.yaml
trackler-2.2.1.133 tracks/perl6/exercises/luhn/.meta/exercise-data.yaml
trackler-2.2.1.132 tracks/perl6/exercises/luhn/.meta/exercise-data.yaml
trackler-2.2.1.131 tracks/perl6/exercises/luhn/.meta/exercise-data.yaml
trackler-2.2.1.130 tracks/perl6/exercises/luhn/.meta/exercise-data.yaml
trackler-2.2.1.129 tracks/perl6/exercises/luhn/.meta/exercise-data.yaml
trackler-2.2.1.128 tracks/perl6/exercises/luhn/.meta/exercise-data.yaml
trackler-2.2.1.127 tracks/perl6/exercises/luhn/.meta/exercise-data.yaml
trackler-2.2.1.126 tracks/perl6/exercises/luhn/.meta/exercise-data.yaml
trackler-2.2.1.125 tracks/perl6/exercises/luhn/.meta/exercise-data.yaml
trackler-2.2.1.124 tracks/perl6/exercises/luhn/.meta/exercise-data.yaml
trackler-2.2.1.123 tracks/perl6/exercises/luhn/.meta/exercise-data.yaml
trackler-2.2.1.122 tracks/perl6/exercises/luhn/.meta/exercise-data.yaml
trackler-2.2.1.121 tracks/perl6/exercises/luhn/.meta/exercise-data.yaml
trackler-2.2.1.120 tracks/perl6/exercises/luhn/.meta/exercise-data.yaml