I want to pass the integer with <STDIN> rather than hardcode it. The code below has all 1 (one), but it can be 2, 3 4, etc. On <STDIN>, I want to put regex so that it will only accept integer; otherwise, the prompt asks until the integer is entered.
bla...
@H=(' ',split//,$a);
@V=(' ',split//,$b);
for my $v(0..$#V){
for my $h(0..$#H){
$M[$v][$h] =
$v?$h?(sort$M[$v-1][$h]+1,$M[$v][$h-1]+1,$M[$v-1][$h-1]+($V[$v]ne$H[$h]))[0]:$v:$h;
}
}
bla ...
bla...
@H=(' ',split//,$a);
@V=(' ',split//,$b);
for my $v(0..$#V){
for my $h(0..$#H){
$M[$v][$h] =
$v?$h?(sort$M[$v-1][$h]+1,$M[$v][$h-1]+1,$M[$v-1][$h-1]+($V[$v]ne$H[$h]))[0]:$v:$h;
}
}
bla ...