YAPC::EU 2018 Glasgow Update!

This commit is contained in:
Ingy döt Net 2018-08-17 15:15:24 +01:00
parent 22f33d4004
commit 4e2d22a71d
1170 changed files with 15042 additions and 3047 deletions

View file

@ -3,8 +3,5 @@ sub dif {
map { $s[$_+1] - $s[$_] } 0 .. $#s-1
}
sub difn {
my ($n, @s) = @_;
@s = dif @s foreach 1..$n;
@s
}
@a = qw<90 47 58 29 22 32 55 5 55 73>;
while (@a) { printf('%6d', $_) for @a = dif @a; print "\n" }

View file

@ -1,7 +1,4 @@
# Project : Forward difference
# Date : 2018/01/19
# Author : Gal Zsolt [~ CalmoSoft ~]
# Email : <calmosoft@gmail.com>
s = [90, 47, 58, 29, 22, 32, 55, 5, 55, 73]
for p = 1 to 9