aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMohammad S Anwar <mohammad.anwar@yahoo.com>2021-04-25 22:14:50 +0100
committerMohammad S Anwar <mohammad.anwar@yahoo.com>2021-04-25 22:14:50 +0100
commitf806354488aff214f3dd3a0419b94dd73bb8acab (patch)
treebfa26869ed9c1ca5d594f46c349ca2ad5ff8409b
parent61726267f901e536941bdee412c7007421779ffd (diff)
downloadperlweeklychallenge-club-f806354488aff214f3dd3a0419b94dd73bb8acab.tar.gz
perlweeklychallenge-club-f806354488aff214f3dd3a0419b94dd73bb8acab.tar.bz2
perlweeklychallenge-club-f806354488aff214f3dd3a0419b94dd73bb8acab.zip
- Added solutions by Colin Crain.
-rw-r--r--challenge-109/colin-crain/blog.txt1
-rw-r--r--challenge-109/colin-crain/perl/ch-1.pl38
-rw-r--r--challenge-109/colin-crain/perl/ch-2.pl127
-rw-r--r--challenge-109/colin-crain/python/ch-1.py36
-rw-r--r--challenge-109/colin-crain/python/ch-2.py92
-rw-r--r--challenge-109/colin-crain/raku/ch-1.raku32
-rw-r--r--challenge-109/colin-crain/raku/ch-2.raku127
-rw-r--r--stats/pwc-current.json497
-rw-r--r--stats/pwc-language-breakdown-summary.json84
-rw-r--r--stats/pwc-language-breakdown.json744
-rw-r--r--stats/pwc-leaders.json398
-rw-r--r--stats/pwc-summary-1-30.json98
-rw-r--r--stats/pwc-summary-121-150.json94
-rw-r--r--stats/pwc-summary-151-180.json34
-rw-r--r--stats/pwc-summary-181-210.json32
-rw-r--r--stats/pwc-summary-211-240.json50
-rw-r--r--stats/pwc-summary-31-60.json104
-rw-r--r--stats/pwc-summary-61-90.json116
-rw-r--r--stats/pwc-summary-91-120.json34
-rw-r--r--stats/pwc-summary.json52
20 files changed, 1633 insertions, 1157 deletions
diff --git a/challenge-109/colin-crain/blog.txt b/challenge-109/colin-crain/blog.txt
new file mode 100644
index 0000000000..2550152193
--- /dev/null
+++ b/challenge-109/colin-crain/blog.txt
@@ -0,0 +1 @@
+https://colincrain.com/2021/04/25/dividing-sums-into-four-squares/
diff --git a/challenge-109/colin-crain/perl/ch-1.pl b/challenge-109/colin-crain/perl/ch-1.pl
new file mode 100644
index 0000000000..3ac38aa0b9
--- /dev/null
+++ b/challenge-109/colin-crain/perl/ch-1.pl
@@ -0,0 +1,38 @@
+#!/Users/colincrain/perl5/perlbrew/perls/perl-5.32.0/bin/perl
+#
+# chowla.pl
+#
+# TASK #1 › Chowla Numbers
+# Submitted by: Mohammad S Anwar
+# Write a script to generate first 20 Chowla Numbers, named after, Sarvadaman D. S. Chowla, a London born Indian American mathematician. It is defined as:
+#
+# C(n) = sum of divisors of n except 1 and n
+#
+# Output:
+# 0, 0, 0, 2, 0, 5, 0, 6, 3, 7, 0, 15, 0, 9, 8, 14, 0, 20, 0, 21
+#
+# © 2021 colin crain
+## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ##
+
+
+
+use warnings;
+use strict;
+use feature ":5.26";
+use feature qw(signatures);
+no warnings 'experimental::signatures';
+
+for (1..20, 479001600) {
+ printf "C(%d)%*s= %d\n", $_, 3-length, ' ', sum_divisors($_);
+}
+
+sub sum_divisors ($n) {
+ my $out = 0;
+ for (2..sqrt $n) {
+ unless ($n % $_) {
+ $out += ($n/$_ == $_ ? $_ : $_ + $n/$_) ;
+ }
+ }
+ return $out;
+}
+
diff --git a/challenge-109/colin-crain/perl/ch-2.pl b/challenge-109/colin-crain/perl/ch-2.pl
new file mode 100644
index 0000000000..d9563bf1c0
--- /dev/null
+++ b/challenge-109/colin-crain/perl/ch-2.pl
@@ -0,0 +1,127 @@
+#!/Users/colincrain/perl5/perlbrew/perls/perl-5.32.0/bin/perl
+#
+# four-sq-permute.pl
+#
+#
+# TASK #2 › Four Squares Puzzle
+# Submitted by: Mohammad S Anwar
+# You are given four squares as below with numbers named a,b,c,d,e,f,g.
+#
+# (1) (3)
+# ╔══════════════╗ ╔══════════════╗
+# ║ ║ ║ ║
+# ║ a ║ ║ e ║
+# ║ ║ (2) ║ ║ (4)
+# ║ ┌───╫──────╫───┐ ┌───╫─────────┐
+# ║ │ ║ ║ │ │ ║ │
+# ║ │ b ║ ║ d │ │ f ║ │
+# ║ │ ║ ║ │ │ ║ │
+# ║ │ ║ ║ │ │ ║ │
+# ╚══════════╪═══╝ ╚═══╪══════╪═══╝ │
+# │ c │ │ g │
+# │ │ │ │
+# │ │ │ │
+# └──────────────┘ └─────────────┘
+# Write a script to place the given unique numbers in the square box so that sum of numbers in each box is the same.
+#
+# Example
+# Input: 1,2,3,4,5,6,7
+#
+# Output:
+#
+# a = 6
+# b = 4
+# c = 1
+# d = 5
+# e = 2
+# f = 3
+# g = 7
+#
+# Box 1: a + b = 6 + 4 = 10
+# Box 2: b + c + d = 4 + 1 + 5 = 10
+# Box 3: d + e + f = 5 + 2 + 3 = 10
+# Box 4: f + g = 3 + 7 = 10
+#
+#
+# © 2021 colin crain
+## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ##
+
+
+
+use warnings;
+use strict;
+use feature ":5.26";
+use feature qw(signatures);
+no warnings 'experimental::signatures';
+
+use Algorithm::Combinatorics qw(permutations);
+use List::Util 1.56 qw(sum zip); ## need 1.56 for zip
+
+if (@ARGV == 7) {
+ my @sol = find_solutions(\@ARGV);
+ say "Input list: @ARGV";
+ say scalar @sol, " solutions found.\n";
+ if (@sol) {
+ report($_) for @sol;
+ }
+}
+else {
+ for my $s (-10..10) {
+ my @list = ($s..$s+6);
+
+ my @sol = find_solutions(\@list);
+ next if not @sol;
+
+ say "+++++++++++++++++++++++++++++\n";
+ say "Input list: @list";
+ say scalar @sol, " solutions found.\n";
+ report($_) for @sol;
+ }
+}
+
+sub find_solutions ($list) {
+ my @out;
+ for my $candidate ( permutations($list) ) {
+ my $n = validate($candidate);
+ push @out, [$candidate, $n] if defined $n;
+ }
+
+ return @out;
+}
+
+sub validate ($r) {
+ my $n = $r->[0] + $r->[1];
+ return $n if $n
+ == $r->[1] + $r->[2] + $r->[3]
+ == $r->[3] + $r->[4] + $r->[5]
+ == $r->[5] + $r->[6] ;
+ return undef;
+}
+
+sub report ($sol) {
+ my ($list, $num) = $sol->@*;
+
+ say<<~"HEAD";
+ ===============================
+ Solution:
+ Sum: $num for all squares
+ Values:
+ HEAD
+
+ my @lets = zip ['a'..'g'], $list;
+ for (@lets) {
+ say "\t\t$_->[0] = $_->[1]";
+ }
+
+ say<<~"TAIL";
+
+ ===============================
+ TAIL
+}
+
+
+
+
+
+
+
diff --git a/challenge-109/colin-crain/python/ch-1.py b/challenge-109/colin-crain/python/ch-1.py
new file mode 100644
index 0000000000..554f5b5518
--- /dev/null
+++ b/challenge-109/colin-crain/python/ch-1.py
@@ -0,0 +1,36 @@
+#!/usr/bin/env python3
+#
+#
+# chowla.py
+#
+# TASK #1 › Chowla Numbers
+# Submitted by: Mohammad S Anwar
+# Write a script to generate first 20 Chowla Numbers, named after, Sarvadaman D. S. Chowla, a London born Indian American mathematician. It is defined as:
+#
+# C(n) = sum of divisors of n except 1 and n
+#
+# Output:
+# 0, 0, 0, 2, 0, 5, 0, 6, 3, 7, 0, 15, 0, 9, 8, 14, 0, 20, 0, 21
+#
+#
+#
+# © 2021 colin crain
+## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ##
+
+import math
+
+def sum_divisors (n):
+ out = 0
+ for d in range( 2, int(math.sqrt(n))+1 ):
+ id = divmod(n,d)
+ if id[1] == 0:
+ out += d
+ if id[0] != d:
+ out += id[0]
+ return out
+
+
+for n in range(1,21):
+ print(f"C({n}) = ", sum_divisors(n))
+
+
diff --git a/challenge-109/colin-crain/python/ch-2.py b/challenge-109/colin-crain/python/ch-2.py
new file mode 100644
index 0000000000..3d45b655a7
--- /dev/null
+++ b/challenge-109/colin-crain/python/ch-2.py
@@ -0,0 +1,92 @@
+#!/usr/bin/env python3
+#
+#
+# four-sq-permute.py
+#
+# TASK #2 › Four Squares Puzzle
+# Submitted by: Mohammad S Anwar
+# You are given four squares as below with numbers named a,b,c,d,e,f,g.
+#
+# (1) (3)
+# ╔══════════════╗ ╔══════════════╗
+# ║ ║ ║ ║
+# ║ a ║ ║ e ║
+# ║ ║ (2) ║ ║ (4)
+# ║ ┌───╫──────╫───┐ ┌───╫─────────┐
+# ║ │ ║ ║ │ │ ║ │
+# ║ │ b ║ ║ d │ │ f ║ │
+# ║ │ ║ ║ │ │ ║ │
+# ║ │ ║ ║ │ │ ║ │
+# ╚══════════╪═══╝ ╚═══╪══════╪═══╝ │
+# │ c │ │ g │
+# │ │ │ │
+# │ │ │ │
+# └──────────────┘ └─────────────┘
+# Write a script to place the given unique numbers in the square box so that sum of numbers in each box is the same.
+#
+# Example
+# Input: 1,2,3,4,5,6,7
+#
+# Output:
+#
+# a = 6
+# b = 4
+# c = 1
+# d = 5
+# e = 2
+# f = 3
+# g = 7
+#
+# Box 1: a + b = 6 + 4 = 10
+# Box 2: b + c + d = 4 + 1 + 5 = 10
+# Box 3: d + e + f = 5 + 2 + 3 = 10
+# Box 4: f + g = 3 + 7 = 10
+#
+#
+#
+#
+# © 2021 colin crain
+## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ##
+
+
+from itertools import permutations
+
+
+
+def find_solutions ( lst ):
+ out = []
+ for candidate in list( permutations(lst) ):
+ (v, n) = validate( candidate )
+ if v:
+ out.append( [candidate, n] )
+ return out
+
+def validate ( lst ):
+ n = lst[0] + lst[1]
+ return ( (n == lst[1] + lst[2] + lst[3]
+ == lst[3] + lst[4] + lst[5]
+ == lst[5] + lst[6]), n )
+
+def report ( tup ):
+ (list, n) = tup
+
+ print(f'''
+ ===============================
+ solution
+ sum is {n}
+ values:
+ ''')
+
+ letter_values = zip( ['a','b','c','d','e','f','g'] , list )
+ for lv in letter_values:
+ print(f"\t\t{lv[0]} = {lv[1]}")
+
+ print(f'''
+ ===============================
+ ''')
+
+input = [1,2,3,4,5,6,7]
+solution = find_solutions(input)
+if len(solution) > 0:
+ for sol in solution:
+ report(sol)
diff --git a/challenge-109/colin-crain/raku/ch-1.raku b/challenge-109/colin-crain/raku/ch-1.raku
new file mode 100644
index 0000000000..652bae7857
--- /dev/null
+++ b/challenge-109/colin-crain/raku/ch-1.raku
@@ -0,0 +1,32 @@
+#!/usr/bin/env perl6
+#
+#
+# chowla.raku
+#
+# TASK #1 › Chowla Numbers
+# Submitted by: Mohammad S Anwar
+# Write a script to generate first 20 Chowla Numbers, named after, Sarvadaman D. S. Chowla, a London born Indian American mathematician. It is defined as:
+#
+# C(n) = sum of divisors of n except 1 and n
+#
+# Output:
+# 0, 0, 0, 2, 0, 5, 0, 6, 3, 7, 0, 15, 0, 9, 8, 14, 0, 20, 0, 21
+#
+#
+# © 2021 colin crain
+## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ##
+
+
+
+unit sub MAIN () ;
+
+for 1..20 {
+ printf "C(%d)%*s= %s\n", $_, 3 - $_.chars, ' ', sum_divisors($_);
+}
+
+sub sum_divisors ($n) {
+ [+] (2..sqrt $n).grep({$n %% $_})
+ .map({$n/$_ == $_ ?? $_
+ !! $_ + $n/$_})
+}
+
diff --git a/challenge-109/colin-crain/raku/ch-2.raku b/challenge-109/colin-crain/raku/ch-2.raku
new file mode 100644
index 0000000000..6ecdec16fa
--- /dev/null
+++ b/challenge-109/colin-crain/raku/ch-2.raku
@@ -0,0 +1,127 @@
+#!/usr/bin/env perl6
+#
+#
+# four-square-permute.raku
+#
+# TASK #2 › Four Squares Puzzle
+# Submitted by: Mohammad S Anwar
+# You are given four squares as below with numbers named a,b,c,d,e,f,g.
+#
+# (1) (3)
+# ╔══════════════╗ ╔══════════════╗
+# ║ ║ ║ ║
+# ║ a ║ ║ e ║
+# ║ ║ (2) ║ ║ (4)
+# ║ ┌───╫──────╫───┐ ┌───╫─────────┐
+# ║ │ ║ ║ │ │ ║ │
+# ║ │ b ║ ║ d │ │ f ║ │
+# ║ │ ║ ║ │ │ ║ │
+# ║ │ ║ ║ │ │ ║ │
+# ╚══════════╪═══╝ ╚═══╪══════╪═══╝ │
+# │ c │ │ g │
+# │ │ │ │
+# │ │ │ │
+# └──────────────┘ └─────────────┘
+# Write a script to place the given unique numbers in the square box so that sum of numbers in each box is the same.
+#
+# Example
+# Input: 1,2,3,4,5,6,7
+#
+# Output:
+#
+# a = 6
+# b = 4
+# c = 1
+# d = 5
+# e = 2
+# f = 3
+# g = 7
+#
+# Box 1: a + b = 6 + 4 = 10
+# Box 2: b + c + d = 4 + 1 + 5 = 10
+# Box 3: d + e + f = 5 + 2 + 3 = 10
+# Box 4: f + g = 3 + 7 = 10
+#
+#
+#
+#
+# © 2021 colin crain
+## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ##
+
+
+
+multi sub MAIN () {
+ for 1..1 -> $s {
+ my @list = ($s..$s+6);
+
+ my @sol = find_solutions(@list);
+ next if not @sol.elems;
+
+ say "+++++++++++++++++++++++++++++\n";
+ say "Input list: ", @list;
+ say @sol.elems, " solutions found.\n";
+ report($_) for @sol;
+ }
+}
+
+multi sub MAIN (*@list where { @list.elems == 7 }) {
+ my @sol = find_solutions(@list);
+ say "Input list: ", @list.sort;
+ say @sol.elems, " solutions found";
+ if (@sol.elems) {
+ report($_) for @sol;
+ }
+}
+
+multi sub MAIN (*@list) {
+ say "please enter 7 numbers";
+}
+
+sub find_solutions (@list) {
+ my @out;
+ my @pm = @list.permutations;
+
+ for @pm -> $candidate {
+ my $n = validate($candidate);
+ push @out, ($candidate, $n) if defined $n;
+ }
+
+ return @out;
+}
+
+sub validate (@list) {
+ my $n = @list[0] + @list[1];
+ $n == @list[1] + @list[2] + @list[3]
+ == @list[3] + @list[4] + @list[5]
+ == @list[5] + @list[6] ?? $n
+ !! Nil
+}
+
+sub report ($sol) {
+
+ my ($list, $num) = |$sol;
+ say "list ", $list;
+ say "total ", $num;
+
+
+ say qq:to/HEAD/;
+
+ ===============================
+ Solution:
+ Sum: $num for all squares
+ Values:
+ HEAD
+
+ my @pairs = <a b c d e f g> Z $list.list;
+
+ for @pairs {
+ say "\t\t $_[0] = $_[1]";
+ }
+
+ say qq:to/TAIL/;
+
+ ===============================
+ TAIL
+}
+
+
diff --git a/stats/pwc-current.json b/stats/pwc-current.json
index c55fa6f76d..0421342593 100644
--- a/stats/pwc-current.json
+++ b/stats/pwc-current.json
@@ -1,190 +1,14 @@
{
- "series" : [
- {
- "data" : [
- {
- "name" : "Aaron Smith",
- "y" : 3,
- "drilldown" : "Aaron Smith"
- },
- {
- "name" : "Abigail",
- "drilldown" : "Abigail",
- "y" : 4
- },
- {
- "name" : "Adam Russell",
- "drilldown" : "Adam Russell",
- "y" : 4
- },
- {
- "drilldown" : "Arne Sommer",
- "y" : 5,
- "name" : "Arne Sommer"
- },
- {
- "name" : "Athanasius",
- "y" : 4,
- "drilldown" : "Athanasius"
- },
- {
- "y" : 5,
- "drilldown" : "Bartosz Jarzyna",
- "name" : "Bartosz Jarzyna"
- },
- {
- "drilldown" : "Cheok-Yin Fung",
- "y" : 3,
- "name" : "Cheok-Yin Fung"
- },
- {
- "y" : 3,
- "drilldown" : "Dave Jacoby",
- "name" : "Dave Jacoby"
- },
- {
- "drilldown" : "E. Choroba",
- "y" : 2,
- "name" : "E. Choroba"
- },
- {
- "name" : "Flavio Poletti",
- "y" : 4,
- "drilldown" : "Flavio Poletti"
- },
- {
- "drilldown" : "James Smith",
- "y" : 2,
- "name" : "James Smith"
- },
- {
- "y" : 2,
- "drilldown" : "Jan Krnavek",
- "name" : "Jan Krnavek"
- },
- {
- "y" : 2,
- "drilldown" : "Joan Mimosinnet",
- "name" : "Joan Mimosinnet"
- },
- {
- "name" : "Jorg Sommrey",
- "y" : 2,
- "drilldown" : "Jorg Sommrey"
- },
- {
- "name" : "Lance Wicks",
- "y" : 2,
- "drilldown" : "Lance Wicks"
- },
- {
- "y" : 5,
- "drilldown" : "Laurent Rosenfeld",
- "name" : "Laurent Rosenfeld"
- },
- {
- "drilldown" : "Luca Ferrari",
- "y" : 4,
- "name" : "Luca Ferrari"
- },
- {
- "drilldown" : "Mark Anderson",
- "y" : 2,
- "name" : "Mark Anderson"
- },
- {
- "drilldown" : "Maxim Kolodyazhny",
- "y" : 1,
- "name" : "Maxim Kolodyazhny"
- },
- {
- "y" : 3,
- "drilldown" : "Mohammad S Anwar",
- "name" : "Mohammad S Anwar"
- },
- {
- "name" : "Niels van Dijke",
- "drilldown" : "Niels van Dijke",
- "y" : 2
- },
- {
- "drilldown" : "PJ Durai",
- "y" : 2,
- "name" : "PJ Durai"
- },
- {
- "name" : "Philip Hood",
- "drilldown" : "Philip Hood",
- "y" : 2
- },
- {
- "drilldown" : "Roger Bell_West",
- "y" : 5,
- "name" : "Roger Bell_West"
- },
- {
- "y" : 2,
- "drilldown" : "Simon Green",
- "name" : "Simon Green"
- },
- {
- "name" : "Simon Proctor",
- "y" : 2,
- "drilldown" : "Simon Proctor"
- },
- {
- "name" : "Stuart Little",
- "drilldown" : "Stuart Little",
- "y" : 4
- },
- {
- "y" : 3,
- "drilldown" : "Ulrich Rieke",
- "name" : "Ulrich Rieke"
- },
- {
- "name" : "W. Luis Mochan",
- "drilldown" : "W. Luis Mochan",
- "y" : 3
- },
- {
- "name" : "Wanderdoc",
- "y" : 2,
- "drilldown" : "Wanderdoc"
- }
- ],
- "colorByPoint" : 1,
- "name" : "Perl Weekly Challenge - 109"
- }
- ],
+ "subtitle" : {
+ "text" : "[Champions: 31] Last updated at 2021-04-25 21:13:46 GMT"
+ },
"chart" : {
"type" : "column"
},
- "yAxis" : {
- "title" : {
- "text" : "Total Solutions"
- }
- },
- "plotOptions" : {
- "series" : {
- "dataLabels" : {
- "format" : "{point.y}",
- "enabled" : 1
- },
- "borderWidth" : 0
- }
- },
- "legend" : {
- "enabled" : 0
- },
- "tooltip" : {
- "followPointer" : 1,
- "pointFormat" : "<span style='color:{point.color}'>{point.name}</span>: <b>{point.y:f}</b><br/>",
- "headerFormat" : "<span style='font-size:11px'>{series.name}</span><br/>"
- },
"drilldown" : {
"series" : [
{
+ "name" : "Aaron Smith",
"data" : [
[
"Raku",
@@ -195,12 +19,11 @@
1
]
],
- "id" : "Aaron Smith",
- "name" : "Aaron Smith"
+ "id" : "Aaron Smith"
},
{
- "name" : "Abigail",
"id" : "Abigail",
+ "name" : "Abigail",
"data" : [
[
"Perl",
@@ -227,7 +50,6 @@
"name" : "Adam Russell"
},
{
- "id" : "Arne Sommer",
"data" : [
[
"Perl",
@@ -242,10 +64,10 @@
1
]
],
- "name" : "Arne Sommer"
+ "name" : "Arne Sommer",
+ "id" : "Arne Sommer"
},
{
- "id" : "Athanasius",
"data" : [
[
"Perl",
@@ -256,11 +78,10 @@
2
]
],
- "name" : "Athanasius"
+ "name" : "Athanasius",
+ "id" : "Athanasius"
},
{
- "name" : "Bartosz Jarzyna",
- "id" : "Bartosz Jarzyna",
"data" : [
[
"Perl",
@@ -274,11 +95,13 @@
"Blog",
1
]
- ]
+ ],
+ "name" : "Bartosz Jarzyna",
+ "id" : "Bartosz Jarzyna"
},
{
- "name" : "Cheok-Yin Fung",
"id" : "Cheok-Yin Fung",
+ "name" : "Cheok-Yin Fung",
"data" : [
[
"Perl",
@@ -291,7 +114,24 @@
]
},
{
- "name" : "Dave Jacoby",
+ "id" : "Colin Crain",
+ "data" : [
+ [
+ "Perl",
+ 2
+ ],
+ [
+ "Raku",
+ 2
+ ],
+ [
+ "Blog",
+ 1
+ ]
+ ],
+ "name" : "Colin Crain"
+ },
+ {
"data" : [
[
"Perl",
@@ -302,17 +142,18 @@
1
]
],
+ "name" : "Dave Jacoby",
"id" : "Dave Jacoby"
},
{
- "name" : "E. Choroba",
"id" : "E. Choroba",
"data" : [
[
"Perl",
2
]
- ]
+ ],
+ "name" : "E. Choroba"
},
{
"data" : [
@@ -325,12 +166,12 @@
2
]
],
- "id" : "Flavio Poletti",
- "name" : "Flavio Poletti"
+ "name" : "Flavio Poletti",
+ "id" : "Flavio Poletti"
},
{
- "name" : "James Smith",
"id" : "James Smith",
+ "name" : "James Smith",
"data" : [
[
"Perl",
@@ -339,37 +180,36 @@
]
},
{
+ "id" : "Jan Krnavek",
"name" : "Jan Krnavek",
"data" : [
[
"Raku",
2
]
- ],
- "id" : "Jan Krnavek"
+ ]
},
{
+ "id" : "Joan Mimosinnet",
+ "name" : "Joan Mimosinnet",
"data" : [
[
"Raku",
2
]
- ],
- "id" : "Joan Mimosinnet",
- "name" : "Joan Mimosinnet"
+ ]
},
{
- "name" : "Jorg Sommrey",
- "id" : "Jorg Sommrey",
"data" : [
[
"Perl",
2
]
- ]
+ ],
+ "name" : "Jorg Sommrey",
+ "id" : "Jorg Sommrey"
},
{
- "name" : "Lance Wicks",
"id" : "Lance Wicks",
"data" : [
[
@@ -380,9 +220,11 @@
"Blog",
1
]
- ]
+ ],
+ "name" : "Lance Wicks"
},
{
+ "name" : "Laurent Rosenfeld",
"data" : [
[
"Perl",
@@ -397,11 +239,11 @@
1
]
],
- "id" : "Laurent Rosenfeld",
- "name" : "Laurent Rosenfeld"
+ "id" : "Laurent Rosenfeld"
},
{
"id" : "Luca Ferrari",
+ "name" : "Luca Ferrari",
"data" : [
[
"Raku",
@@ -411,30 +253,30 @@
"Blog",
2
]
- ],
- "name" : "Luca Ferrari"
+ ]
},
{
+ "name" : "Mark Anderson",
"data" : [
[
"Raku",
2
]
],
- "id" : "Mark Anderson",
- "name" : "Mark Anderson"
+ "id" : "Mark Anderson"
},
{
- "name" : "Maxim Kolodyazhny",
"id" : "Maxim Kolodyazhny",
"data" : [
[
"Raku",
1
]
- ]
+ ],
+ "name" : "Maxim Kolodyazhny"
},
{
+ "name" : "Mohammad S Anwar",
"data" : [
[
"Perl",
@@ -445,42 +287,41 @@
1
]
],
- "id" : "Mohammad S Anwar",
- "name" : "Mohammad S Anwar"
+ "id" : "Mohammad S Anwar"
},
{
+ "id" : "Niels van Dijke",
"data" : [
[
"Perl",
2
]
],
- "id" : "Niels van Dijke",
"name" : "Niels van Dijke"
},
{
+ "id" : "PJ Durai",
"name" : "PJ Durai",
"data" : [
[
"Raku",
2
]
- ],
- "id" : "PJ Durai"
+ ]
},
{
"id" : "Philip Hood",
+ "name" : "Philip Hood",
"data" : [
[
"Raku",
2
]
- ],
- "name" : "Philip Hood"
+ ]
},
{
- "name" : "Roger Bell_West",
"id" : "Roger Bell_West",
+ "name" : "Roge