Someone has to throw in the functional-programming solution here, since this sort of mathematical formula just begs for recursion. ;)
sub isIncreasingArray {
return 1 if @_ <= 1;
return (pop(@_) - $_[-1] == 1) && isIncreasingArray(@_);
}
As for a subroutine argument being an array versus multiple arguments, think of it this way: Perl is always sending a list of arguments to your subroutine as the array @_. You can either shift or pop off arguments from that array as individual scalars, or otherwise operate on the whole list as an array. From inside your subroutine, it's still an array, period.
If you get into references, yes you can pass a reference-to-an-array into a subroutine. That reference is still technically being passed to your subroutine as an array (list) containing one scalar value: the reference. First I'd ignore all this and wrap your head around basic operation without references.
Calling the subroutine. This way, Perl is secretly converting your bare list of scalars into an array of scalars:
isIncreasingArray(1,2,3,4);
This way, Perl is passing your array:
@a = (1,2,3,4);
$answer = isIncreasingArray(@a);
Either way, the subroutine gets an array. And it's a copy*, hence the efficiency talk of references here. Don't worry about that for K<10,000, even with my ridiculously inefficient, academic, elegant, recursive solution here, which still takes under 1 second on my laptop:
print isIncreasingArray(1..10000), "\n"; # true
*A copy: sort of, but not really? See comments below, and other resources, e.g. PerlMonks. "One might argue that Perl always does Pass-By-Reference, but protects us from ourselves." Sometimes. In practice I make my own copies inside subroutines into localized "my" variables. Just do that.