Suppose I have an array
my @arr = ( 1,4);
I need to have the missing numbers:
my @res = ( 2,3,5);
How to calculate this easy from @arr ?
Best Regards,
Ton
my @arr = ( 1,4);
I need to have the missing numbers:
my @res = ( 2,3,5);
How to calculate this easy from @arr ?
Best Regards,
Ton
Comment