- or download this
use strict;
...
return;
}
}
- or download this
use strict;
...
push @stack, substr($food,0,length($food)-1);
}
}
- or download this
use strict;
...
return 1 if $n < 2;
return fib($n - 2) + fib($n - 1);
}
- or download this
if (length $food) ...
# instead of
if ($food) ...