Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
sub first_nomatch{
my($sa,$sb)=@_;
return -1 unless $sa || $sb;
return 0 unless $sa && $sb;
return 0 if ord($sa) != ord($sb);
return -1 if $sa eq $sb;
my$sc="$sa" ^ "$sb";
$sc=~/^(\x00+)/;
return length($1);
}