aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMohammad S Anwar <mohammad.anwar@yahoo.com>2023-10-11 19:22:38 +0100
committerMohammad S Anwar <mohammad.anwar@yahoo.com>2023-10-11 19:22:38 +0100
commit3143f9657ea324e7588d575d67c35eb28bc276f3 (patch)
tree3fa1e94ed13c658d039904255bad71aafe8a2014
parent5276399f671e3a4b5c12cd1e028767baadae911f (diff)
downloadperlweeklychallenge-club-3143f9657ea324e7588d575d67c35eb28bc276f3.tar.gz
perlweeklychallenge-club-3143f9657ea324e7588d575d67c35eb28bc276f3.tar.bz2
perlweeklychallenge-club-3143f9657ea324e7588d575d67c35eb28bc276f3.zip
- Added solutions by Bob Lied.
- Added solutions by Lubos Kolouch. - Added solutions by Roger Bell_West. - Added solutions by David Ferrone. - Added solutions by Steven Wilson. - Added solutions by Robert DiCicco.
-rw-r--r--challenge-238/robert-dicicco/perl/ch-2.pl55
-rw-r--r--challenge-238/robert-dicicco/ruby/ch-2.rb48
-rw-r--r--challenge-238/steven-wilson/python/ch-1.py (renamed from challenge-238/steven-wilson/python/ch-01.py)0
-rw-r--r--stats/pwc-challenge-172.json267
-rw-r--r--stats/pwc-current.json340
-rw-r--r--stats/pwc-language-breakdown-summary.json66
-rw-r--r--stats/pwc-language-breakdown.json1506
-rw-r--r--stats/pwc-leaders.json778
-rw-r--r--stats/pwc-summary-1-30.json42
-rw-r--r--stats/pwc-summary-121-150.json24
-rw-r--r--stats/pwc-summary-151-180.json114
-rw-r--r--stats/pwc-summary-181-210.json36
-rw-r--r--stats/pwc-summary-211-240.json60
-rw-r--r--stats/pwc-summary-241-270.json58
-rw-r--r--stats/pwc-summary-271-300.json26
-rw-r--r--stats/pwc-summary-31-60.json106
-rw-r--r--stats/pwc-summary-61-90.json110
-rw-r--r--stats/pwc-summary-91-120.json110
-rw-r--r--stats/pwc-summary.json58
19 files changed, 1999 insertions, 1805 deletions
diff --git a/challenge-238/robert-dicicco/perl/ch-2.pl b/challenge-238/robert-dicicco/perl/ch-2.pl
new file mode 100644
index 0000000000..be98b46b37
--- /dev/null
+++ b/challenge-238/robert-dicicco/perl/ch-2.pl
@@ -0,0 +1,55 @@
+#!/usr/bin/env perl
+=begin comment
+----------------------------------------
+AUTHOR: Robert DiCicco
+DATE : 2023-10-10
+Challenge 238 Task 02 Persistence Sort ( Perl )
+----------------------------------------
+=cut
+use v5.38;
+use List::Util qw/product/;
+
+my @myints = ([15, 99, 1, 34],[50, 25, 33, 22]);
+
+sub Reduce ( $num ) {
+ my $steps = 0;
+ while($num > 9) {
+ my @arr = split('',$num);
+ $num = product(@arr);
+ $steps++;
+ }
+ return $steps;
+}
+
+for my $mints (@myints) {
+ say "Input: \@int = [@$mints]";
+ my $cnt = 0;
+ my %h;
+ while ($cnt < scalar @$mints) {
+ my $retval = Reduce($mints->[$cnt]);
+ $h{$mints->[$cnt]} = $retval;
+ $cnt++;
+ }
+
+ print "Output : [";
+ foreach my $key (sort { $h{$a} <=> $h{$b} or $a cmp $b } keys %h) {
+ printf "%d ", $key;
+ }
+ say "]\n";
+}
+
+=begin comment
+----------------------------------------
+SAMPLE OUTPUT
+
+perl .\Persistence.pl
+
+Input: @int = [15 99 1 34]
+Output : [1 15 34 99 ]
+
+Input: @int = [50 25 33 22]
+Output : [22 33 50 25 ]
+----------------------------------------
+=cut
+
+
diff --git a/challenge-238/robert-dicicco/ruby/ch-2.rb b/challenge-238/robert-dicicco/ruby/ch-2.rb
new file mode 100644
index 0000000000..a4be256920
--- /dev/null
+++ b/challenge-238/robert-dicicco/ruby/ch-2.rb
@@ -0,0 +1,48 @@
+#!/usr/bin/env ruby
+=begin
+----------------------------------------
+AUTHOR: Robert DiCicco
+DATE : 2023-10-11
+Challenge 238 Task 02 Persistence Sort ( Ruby )
+----------------------------------------
+=end
+
+myints = [[15, 99, 1, 34],[50, 25, 33, 22]]
+
+def Reduce ( num )
+ steps = 0
+ while num > 9
+ arr = num.to_s.chars.map(&:to_i)
+ num = arr.reject(&:zero?).inject(:*)
+ steps += 1
+ end
+ return steps
+end
+
+myints.each do |mints|
+ h = Hash.new()
+ puts("Input: @int = #{mints}")
+ for cnt in 0..mints.length() - 1
+ retval = Reduce(mints[cnt])
+ h[mints[cnt]] = retval
+ cnt += 1
+ end
+ h2 = h.sort_by {|_key, value| value}.to_h
+ puts("Output: #{h2.keys}\n\n")
+end
+
+=begin
+----------------------------------------
+SAMPLE OUTPUT
+
+ruby .\Persistence.rb
+
+Input: @int = [15, 99, 1, 34]
+Output: [1, 15, 34, 99]
+
+Input: @int = [50, 25, 33, 22]
+Output: [22, 33, 50, 25]
+----------------------------------------
+=end
+
+
diff --git a/challenge-238/steven-wilson/python/ch-01.py b/challenge-238/steven-wilson/python/ch-1.py
index 0dd2a61576..0dd2a61576 100644
--- a/challenge-238/steven-wilson/python/ch-01.py
+++ b/challenge-238/steven-wilson/python/ch-1.py
diff --git a/stats/pwc-challenge-172.json b/stats/pwc-challenge-172.json
index 6c0cb9d7ed..bbd074de7d 100644
--- a/stats/pwc-challenge-172.json
+++ b/stats/pwc-challenge-172.json
@@ -2,6 +2,7 @@
"drilldown" : {
"series" : [
{
+ "name" : "Adam Russell",
"data" : [
[
"Perl",
@@ -12,12 +13,11 @@
1
]
],
- "name" : "Adam Russell",
"id" : "Adam Russell"
},
{
- "name" : "Arne Sommer",
"id" : "Arne Sommer",
+ "name" : "Arne Sommer",
"data" : [
[
"Raku",
@@ -31,7 +31,6 @@
},
{
"id" : "Athanasius",
- "name" : "Athanasius",
"data" : [
[
"Perl",
@@ -41,31 +40,41 @@
"Raku",
2
]
- ]
+ ],
+ "name" : "Athanasius"
+ },
+ {
+ "id" : "Bob Lied",
+ "data" : [
+ [
+ "Perl",
+ 2
+ ]
+ ],
+ "name" : "Bob Lied"
},
{
- "name" : "Bruce Gray",
"id" : "Bruce Gray",
"data" : [
[
"Raku",
2
]
- ]
+ ],
+ "name" : "Bruce Gray"
},
{
+ "id" : "Cheok-Yin Fung",
"data" : [
[
"Perl",
1
]
],
- "id" : "Cheok-Yin Fung",
"name" : "Cheok-Yin Fung"
},
{
"id" : "Colin Crain",
- "name" : "Colin Crain",
"data" : [
[
"Perl",
@@ -75,27 +84,28 @@
"Blog",
1
]
- ]
+ ],
+ "name" : "Colin Crain"
},
{
- "id" : "Dario Mazzeo",
"name" : "Dario Mazzeo",
"data" : [
[
"Perl",
1
]
- ]
+ ],
+ "id" : "Dario Mazzeo"
},
{
"id" : "Dave Jacoby",
- "name" : "Dave Jacoby",
"data" : [
[
"Perl",
2
]
- ]
+ ],
+ "name" : "Dave Jacoby"
},
{
"data" : [
@@ -108,18 +118,18 @@
"id" : "Duncan C. White"
},
{
+ "id" : "E. Choroba",
+ "name" : "E. Choroba",
"data" : [
[
"Perl",
2
]
- ],
- "name" : "E. Choroba",
- "id" : "E. Choroba"
+ ]
},
{
- "name" : "Flavio Poletti",
"id" : "Flavio Poletti",
+ "name" : "Flavio Poletti",
"data" : [
[
"Perl",
@@ -136,7 +146,6 @@
]
},
{
- "name" : "Jaldhar H. Vyas",
"id" : "Jaldhar H. Vyas",
"data" : [
[
@@ -151,9 +160,11 @@
"Blog",
1
]
- ]
+ ],
+ "name" : "Jaldhar H. Vyas"
},
{
+ "id" : "James Smith",
"data" : [
[
"Perl",
@@ -164,22 +175,21 @@
1
]
],
- "id" : "James Smith",
"name" : "James Smith"
},
{
+ "name" : "Jan Krnavek",
"data" : [
[
"Raku",
1
]
],
- "id" : "Jan Krnavek",
- "name" : "Jan Krnavek"
+ "id" : "Jan Krnavek"
},
{
- "name" : "Jorg Sommrey",
"id" : "Jorg Sommrey",
+ "name" : "Jorg Sommrey",
"data" : [
[
"Perl",
@@ -188,16 +198,17 @@
]
},
{
+ "name" : "Kjetil Skotheim",
"data" : [
[
"Perl",
2
]
],
- "id" : "Kjetil Skotheim",
- "name" : "Kjetil Skotheim"
+ "id" : "Kjetil Skotheim"
},
{
+ "name" : "Laurent Rosenfeld",
"data" : [
[
"Perl",
@@ -212,38 +223,37 @@
1
]
],
- "name" : "Laurent Rosenfeld",
"id" : "Laurent Rosenfeld"
},
{
"id" : "Lubos Kolouch",
- "name" : "Lubos Kolouch",
"data" : [
[
"Perl",
2
]
- ]
+ ],
+ "name" : "Lubos Kolouch"
},
{
+ "id" : "Mark Anderson",
"data" : [
[
"Raku",
2
]
],
- "id" : "Mark Anderson",
"name" : "Mark Anderson"
},
{
- "name" : "Marton Polgar",
"id" : "Marton Polgar",
"data" : [
[
"Raku",
2
]
- ]
+ ],
+ "name" : "Marton Polgar"
},
{
"data" : [
@@ -252,12 +262,10 @@
1
]
],
- "id" : "Matthew Neleigh",
- "name" : "Matthew Neleigh"
+ "name" : "Matthew Neleigh",
+ "id" : "Matthew Neleigh"
},
{
- "id" : "Mohammad S Anwar",
- "name" : "Mohammad S Anwar",
"data" : [
[
"Perl",
@@ -267,19 +275,22 @@
"Raku",
2
]
- ]
+ ],
+ "name" : "Mohammad S Anwar",
+ "id" : "Mohammad S Anwar"
},
{
"name" : "Paulo Custodio",
- "id" : "Paulo Custodio",
"data" : [
[
"Perl",
2
]
- ]
+ ],
+ "id" : "Paulo Custodio"
},
{
+ "id" : "Peter Campbell Smith",
"data" : [
[
"Perl",
@@ -290,7 +301,6 @@
1
]
],
- "id" : "Peter Campbell Smith",
"name" : "Peter Campbell Smith"
},
{
@@ -300,20 +310,22 @@
1
]
],
- "id" : "Philippe Bricout",
- "name" : "Philippe Bricout"
+ "name" : "Philippe Bricout",
+ "id" : "Philippe Bricout"
},
{
+ "name" : "PokGoPun",
"data" : [
[
"Perl",
2
]
],
- "id" : "PokGoPun",
- "name" : "PokGoPun"
+ "id" : "PokGoPun"
},
{
+ "id" : "Robert DiCicco",
+ "name" : "Robert DiCicco",
"data" : [
[
"Perl",
@@ -323,9 +335,7 @@
"Raku",
2
]
- ],
- "id" : "Robert DiCicco",
- "name" : "Robert DiCicco"
+ ]
},
{
"data" : [
@@ -352,8 +362,8 @@
1
]
],
- "id" : "Roger Bell_West",
- "name" : "Roger Bell_West"
+ "name" : "Roger Bell_West",
+ "id" : "Roger Bell_West"
},
{
"data" : [
@@ -370,6 +380,8 @@
"id" : "Simon Green"
},
{
+ "id" : "Stephen G. Lynn",
+ "name" : "Stephen G. Lynn",
"data" : [
[
"Perl",
@@ -383,12 +395,9 @@
"Blog",
1
]
- ],
- "id" : "Stephen G. Lynn",
- "name" : "Stephen G. Lynn"
+ ]
},
{
- "id" : "Ulrich Rieke",
"name" : "Ulrich Rieke",
"data" : [
[
@@ -399,7 +408,8 @@
"Raku",
2
]
- ]
+ ],
+ "id" : "Ulrich Rieke"
},
{
"data" : [
@@ -416,63 +426,56 @@
"id" : "W. Luis Mochan"
},
{
+ "id" : "Walt Mankowski",
+ "name" : "Walt Mankowski",
"data" : [
[
"Perl",
2
]
- ],
- "id" : "Walt Mankowski",
- "name" : "Walt Mankowski"
+ ]
}
]
},
- "title" : {
- "text" : "The Weekly Challenge - 172"
- },
- "plotOptions" : {
- "series" : {
- "dataLabels" : {
- "enabled" : 1,
- "format" : "{point.y}"
- },
- "borderWidth" : 0
- }
- },
"series" : [
{
- "name" : "The Weekly Challenge - 172",
"colorByPoint" : 1,
+ "name" : "The Weekly Challenge - 172",
"data" : [
{
- "y" : 3,
"drilldown" : "Adam Russell",
- "name" : "Adam Russell"
+ "name" : "Adam Russell",
+ "y" : 3
},
{
- "y" : 3,
+ "drilldown" : "Arne Sommer",
"name" : "Arne Sommer",
- "drilldown" : "Arne Sommer"
+ "y" : 3
},
{
- "y" : 4,
+ "name" : "Athanasius",
"drilldown" : "Athanasius",
- "name" : "Athanasius"
+ "y" : 4
},
{
+ "y" : 2,
+ "name" : "Bob Lied",
+ "drilldown" : "Bob Lied"
+ },
+ {
+ "y" : 2,
"name" : "Bruce Gray",
- "drilldown" : "Bruce Gray",
- "y" : 2
+ "drilldown" : "Bruce Gray"
},
{
"y" : 1,
- "drilldown" : "Cheok-Yin Fung",
- "name" : "Cheok-Yin Fung"
+ "name" : "Cheok-Yin Fung",
+ "drilldown" : "Cheok-Yin Fung"
},
{
- "y" : 3,
"drilldown" : "Colin Crain",
- "name" : "Colin Crain"
+ "name" : "Colin Crain",
+ "y" : 3
},
{
"drilldown" : "Dario Mazzeo",
@@ -486,8 +489,8 @@
},
{
"y" : 2,
- "drilldown" : "Duncan C. White",
- "name" : "Duncan C. White"
+ "name" : "Duncan C. White",
+ "drilldown" : "Duncan C. White"
},
{
"y" : 2,
@@ -500,34 +503,34 @@
"y" : 6
},
{
- "y" : 5,
"drilldown" : "Jaldhar H. Vyas",
- "name" : "Jaldhar H. Vyas"
+ "name" : "Jaldhar H. Vyas",
+ "y" : 5
},
{
- "drilldown" : "James Smith",
"name" : "James Smith",
+ "drilldown" : "James Smith",
"y" : 3
},
{
"y" : 1,
- "name" : "Jan Krnavek",
- "drilldown" : "Jan Krnavek"
+ "drilldown" : "Jan Krnavek",
+ "name" : "Jan Krnavek"
},
{
- "drilldown" : "Jorg Sommrey",
+ "y" : 2,
"name" : "Jorg Sommrey",
- "y" : 2
+ "drilldown" : "Jorg Sommrey"
},
{
- "y" : 2,
"drilldown" : "Kjetil Skotheim",
- "name" : "Kjetil Skotheim"
+ "name" : "Kjetil Skotheim",
+ "y" : 2
},
{
"y" : 5,
- "name" : "Laurent Rosenfeld",
- "drilldown" : "Laurent Rosenfeld"
+ "drilldown" : "Laurent Rosenfeld",
+ "name" : "Laurent Rosenfeld"
},
{
"drilldown" : "Lubos Kolouch",
@@ -536,8 +539,8 @@
},
{
"y" : 2,
- "name" : "Mark Anderson",
- "drilldown" : "Mark Anderson"
+ "drilldown" : "Mark Anderson",
+ "name" : "Mark Anderson"
},
{
"drilldown" : "Marton Polgar",
@@ -550,34 +553,34 @@
"y" : 1
},
{
- "y" : 4,
+ "name" : "Mohammad S Anwar",
"drilldown" : "Mohammad S Anwar",
- "name" : "Mohammad S Anwar"
+ "y" : 4
},
{
- "drilldown" : "Paulo Custodio",
+ "y" : 2,
"name" : "Paulo Custodio",
- "y" : 2
+ "drilldown" : "Paulo Custodio"
},
{
- "drilldown" : "Peter Campbell Smith",
+ "y" : 3,
"name" : "Peter Campbell Smith",
- "y" : 3
+ "drilldown" : "Peter Campbell Smith"
},
{
- "name" : "Philippe Bricout",
"drilldown" : "Philippe Bricout",
+ "name" : "Philippe Bricout",
"y" : 1
},
{
- "y" : 2,
"name" : "PokGoPun",
- "drilldown" : "PokGoPun"
+ "drilldown" : "PokGoPun",
+ "y" : 2
},
{
- "y" : 4,
+ "drilldown" : "Robert DiCicco",
"name" : "Robert DiCicco",
- "drilldown" : "Robert DiCicco"
+ "y" : 4
},
{
"y" : 2,
@@ -591,12 +594,12 @@
},
{
"y" : 3,
- "name" : "Simon Green",
- "drilldown" : "Simon Green"
+ "drilldown" : "Simon Green",
+ "name" : "Simon Green"
},
{
- "name" : "Stephen G. Lynn",
"drilldown" : "Stephen G. Lynn",
+ "name" : "Stephen G. Lynn",
"y" : 5
},
{
@@ -605,38 +608,50 @@
"name" : "Ulrich Rieke"
},
{
+ "y" : 3,
"drilldown" : "W. Luis Mochan",
- "name" : "W. Luis Mochan",
- "y" : 3
+ "name" : "W. Luis Mochan"
},
{
- "y" : 2,
+ "drilldown" : "Walt Mankowski",
"name" : "Walt Mankowski",
- "drilldown" : "Walt Mankowski"
+ "y" : 2
}
]
}
],
+ "chart" : {
+ "type" : "column"
+ },
+ "legend" : {
+ "enabled" : 0
+ },
+ "plotOptions" : {
+ "series" : {
+ "dataLabels" : {
+ "format" : "{point.y}",
+ "enabled" : 1
+ },
+ "borderWidth" : 0
+ }
+ },
+ "tooltip" : {
+ "followPointer" : 1,
+ "headerFormat" : "<span style='font-size:11px'>{series.name}</span><br/>",
+ "pointFormat" : "<span style='color:{point.color}'>{point.name}</span>: <b>{point.y:f}</b><br/>"
+ },
"yAxis" : {
"title" : {
"text" : "Total Solutions"
}
},
+ "title" : {
+ "text" : "The Weekly Challenge - 172"
+ },
"subtitle" : {
- "text" : "[Champions: 34] Last updated at 2023-04-03 00:46:09 GMT"
+ "text" : "[Champions: 35] Last updated at 2023-10-11 18:12:21 GMT"
},
"xAxis" : {
"type" : "category"
- },
- "chart" : {
- "type" : "column"
- },
- "tooltip" : {
- "headerFormat" : "<span style='font-size:11px'>{series.name}</span><br/>",
- "followPointer" : 1,
- "pointFormat" : "<span style='color:{point.color}'>{point.name}</span>: <b>{point.y:f}</b><br/>"
- },
- "legend" : {
- "enabled" : 0
}
}
diff --git a/stats/pwc-current.json b/stats/pwc-current.json
index be6063c600..a5e6ca1d04 100644
--- a/stats/pwc-current.json
+++ b/stats/pwc-current.json
@@ -1,95 +1,21 @@
{
- "series" : [
- {
- "colorByPoint" : 1,
- "name" : "The Weekly Challenge - 238",
- "data" : [
- {
- "y" : 3,
- "drilldown" : "Dave Jacoby",
- "name" : "Dave Jacoby"
- },
- {
- "name" : "E. Choroba",
- "y" : 2,
- "drilldown" : "E. Choroba"
- },
- {
- "drilldown" : "Humberto Massa",
- "y" : 2,
- "name" : "Humberto Massa"
- },
- {
- "drilldown" : "Lance Wicks",
- "y" : 1,
- "name" : "Lance Wicks"
- },
- {
- "name" : "Laurent Rosenfeld",
- "drilldown" : "Laurent Rosenfeld",
- "y" : 6
- },
- {
- "y" : 9,
- "drilldown" : "Luca Ferrari",
- "name" : "Luca Ferrari"
- },
- {
- "name" : "Mark Anderson",
- "drilldown" : "Mark Anderson",
- "y" : 2
- },
- {
- "y" : 2,
- "drilldown" : "Matthew Neleigh",
- "name" : "Matthew Neleigh"
- },
- {
- "y" : 2,
- "drilldown" : "Niels van Dijke",
- "name" : "Niels van Dijke"
- },
- {
- "y" : 5,
- "drilldown" : "Packy Anderson",
- "name" : "Packy Anderson"
- },
- {
- "y" : 3,
- "drilldown" : "Peter Campbell Smith",
- "name" : "Peter Campbell Smith"
- },
- {
- "name" : "Peter Meszaros",
- "y" : 2,
- "drilldown" : "Peter Meszaros"
- },
- {
- "y" : 3,
- "drilldown" : "Robbie Hatley",
- "name" : "Robbie Hatley"
- },
- {
- "name" : "Robert DiCicco",
- "y" : 2,
- "drilldown" : "Robert DiCicco"
- },
- {
- "y" : 4,
- "drilldown" : "Ulrich Rieke",
- "name" : "Ulrich Rieke"
- },
- {
- "name" : "W. Luis Mochan",
- "drilldown" : "W. Luis Mochan",
- "y" : 3
- }
- ]
- }
- ],
"drilldown" : {
"series" : [
{
+ "id" : "Bob Lied",
+ "data" : [
+ [
+ "Perl",
+ 2
+ ],
+ [
+ "Blog",
+ 1
+ ]
+ ],
+ "name" : "Bob Lied"
+ },
+ {
"data" : [
[
"Perl",
@@ -104,38 +30,46 @@
"id" : "Dave Jacoby"
},
{
- "id" : "E. Choroba",
+ "name" : "David Ferrone",
"data" : [
[
"Perl",
2
]
],
- "name" : "E. Choroba"
+ "id" : "David Ferrone"
},
{
+ "name" : "E. Choroba",
"data" : [
[
- "Raku",
+ "Perl",
2
]
],
+ "id" : "E. Choroba"
+ },
+ {
"name" : "Humberto Massa",
+ "data" : [
+ [
+ "Raku",
+ 2
+ ]
+ ],
"id" : "Humberto Massa"
},
{
- "id" : "Lance Wicks",
"data" : [
[
"Perl",
1
]
],
- "name" : "Lance Wicks"
+ "name" : "Lance Wicks",
+ "id" : "Lance Wicks"
},
{
- "id" : "Laurent Rosenfeld",
- "name" : "Laurent Rosenfeld",
"data" : [
[
"Perl",
@@ -149,9 +83,30 @@
"Blog",
2
]
- ]
+ ],
+ "name" : "Laurent Rosenfeld",
+ "id" : "Laurent Rosenfeld"
},
{
+ "id" : "Lubos Kolouch",
+ "data" : [
+ [
+ "Perl",
+ 2
+ ],
+ [
+ "Raku",
+ 2
+ ],
+ [
+ "Blog",
+ 1
+ ]
+ ],
+ "name" : "Lubos Kolouch"
+ },
+ {
+ "id" : "Luca Ferrari",
"data" : [
[
"Raku",
@@ -162,37 +117,36 @@
7
]
],
- "name" : "Luca Ferrari",
- "id" : "Luca Ferrari"
+ "name" : "Luca Ferrari"
},
{
- "id" : "Mark Anderson",
"name" : "Mark Anderson",
"data" : [
[
"Raku",
2
]
- ]
+ ],
+ "id" : "Mark Anderson"
},
{
+ "name" : "Matthew Neleigh",
"data" : [
[
"Perl",
2
]
],
- "name" : "Matthew Neleigh",
"id" : "Matthew Neleigh"
},
{
- "name" : "Niels van Dijke",
"data" : [
[
"Perl",
2
]
],
+ "name" : "Niels van Dijke",
"id" : "Niels van Dijke"
},
{
@@ -214,6 +168,7 @@
"id" : "Packy Anderson"
},
{
+ "id" : "Peter Campbell Smith",
"data" : [
[
"Perl",
@@ -224,21 +179,19 @@
1
]
],
- "name" : "Peter Campbell Smith",
- "id" : "Peter Campbell Smith"
+ "name" : "Peter Campbell Smith"
},
{
"id" : "Peter Meszaros",