- or download this
use warning;
- or download this
use warnings;
- or download this
$ncc = 0;
$pc = 0;
$fc = 0;
- or download this
my $ncc = 0;
my $pc = 0;
my $fc = 0;
- or download this
sub fileA_ext() {
- or download this
sub fileA_ext {
- or download this
while (@array = <FileA>) {
- or download this
my @array = <FileA>;
- or download this
foreach $line(@array) {
- or download this
foreach my $line ( @array ) {
- or download this
$name1 = "$1";
$score1 = "$12";
- or download this
$name1 = $1;
$score1 = $12;
- or download this
foreach $line (@tmp1) {
- or download this
foreach my $line ( @tmp1 ) {
- or download this
my $name2 = "$1";
substr($name2, -13) = '';
my $score2 = "$12";
- or download this
my $name2 = $1;
substr($name2, -13) = '';
my $score2 = $12;
- or download this
sub FileB_ext() {
- or download this
sub FileB_ext {
- or download this
while (@array = <FileB>) {
- or download this
my @array = <FileB>;
- or download this
foreach $line(@array) {
- or download this
foreach my $line ( @array ) {
- or download this
my $name3 = "$1";
my $score3 = "$12";
- or download this
my $name3 = $1;
my $score3 = $12;
- or download this
foreach $line (@tmp2) {
- or download this
foreach my $line ( @tmp2 ) {
- or download this
my $name4 = "$1";
substr($name4, -13) = '';
my $score4 = "$12";
- or download this
my $name4 = $1;
substr($name4, -13) = '';
my $score4 = $12;
- or download this
sub check() {
- or download this
sub check {
- or download this
foreach $data1 (@arr1) {
- or download this
foreach my $data1 ( @arr1 ) {
- or download this
my $ep1 = "$1";
my $s1 = "$2";
- or download this
my $ep1 = $1;
my $s1 = $2;
- or download this
foreach $data2 (@arr2) {
- or download this
foreach my $data2 ( @arr2 ) {
- or download this
my $ep2 = "$1";
my $s2 = "$2";
- or download this
my $ep2 = $1;
my $s2 = $2;
- or download this
if ( $ep1 eq $ep2 && $s1 =~ m/-/g) {
- or download this
if ( $ep1 eq $ep2 && $s1 =~ m/-/) {
- or download this
if ( $ep1 eq $ep2 && $s1 !~ m/-/g && $s1 > 50 && $
+s2 > 40) {
- or download this
if ( $ep1 eq $ep2 && $s1 !~ m/-/ && $s1 > 50 && $s
+2 > 40) {
- or download this
if ( $ep1 eq $ep2 && $s1 !~ m/-/g && $s1 < 50 && $
+s2 < 40) {
- or download this
if ( $ep1 eq $ep2 && $s1 !~ m/-/ && $s1 < 50 && $s
+2 < 40) {