From 973dd57dc4c70abf98cf65c4168e2f62d0fb4493 Mon Sep 17 00:00:00 2001 From: Abigail Date: Mon, 31 May 2021 13:03:50 +0200 Subject: README for week 115 --- challenge-115/abigail/README.md | 58 +++++++++++++++++------------------------ 1 file changed, 24 insertions(+), 34 deletions(-) diff --git a/challenge-115/abigail/README.md b/challenge-115/abigail/README.md index 7548aee37d..75cec1ed8e 100644 --- a/challenge-115/abigail/README.md +++ b/challenge-115/abigail/README.md @@ -1,58 +1,48 @@ # Solutions by Abigail -## [Next Palindrome Number](https://perlweeklychallenge.org/blog/perl-weekly-challenge-114/#TASK1) +## [String Chain](https://perlweeklychallenge.org/blog/perl-weekly-challenge-115/#TASK1) -> You are given a positive integer `$N`. +> You are given an array of strings. +> +> Write a script to find out if the given strings can be chained +> to form a circle. Print `1` if found otherwise `0`. > -> Write a script to find out the next Palindrome Number higher than -> the given integer `$N`. +> > A string `$S` can be put before another string `$T` in circle +> > if the last character of `$S` is same as first character of `$T`. ### Example ~~~~ -Input: $N = 1234 -Output: 1331 +Input: @S = ("abc", "dea", "cd") +Output: 1 as we can form circle e.g. "abc", "cd", "dea". -Input: $N = 999 -Output: 1001 +Input: @S = ("ade", "cbd", "fgh") +Output: 0 as we can't form circle. ~~~~ ### Solutions -* [AWK](awk/ch-1.awk) -* [Bash](bash/ch-1.sh) -* [C](c/ch-1.c) -* [Perl](perl/ch-1.pl) ### Blog -[Next Palindrome Number](https://abigail.github.io/HTML/Perl-Weekly-Challenge/week-114-1.html) +[String Chain](https://abigail.github.io/HTML/Perl-Weekly-Challenge/week-115-1.html) -## [Higher Integer Set Bits](https://perlweeklychallenge.org/blog/perl-weekly-challenge-114/#TASK2) +## [Largest Multiple](https://perlweeklychallenge.org/blog/perl-weekly-challenge-115/#TASK2) -> You are given a positive integer `$N`. -> -> Write a script to find the next higher integer having the same number of -> `1` bits in binary representation as `$N`. +> You are given a list of positive integers `(0-9)`, single digit. +> +> Write a script to find the largest multiple of `2` that can be +> formed from the list. ### Examples ~~~~ -Input: $N = 3 -Output: 5 -~~~~ +Input: @N = (1, 0, 2, 6) +Output: 6210 -Binary representation of `$N` is `011`. There are two `1` bits. So the next -higher integer is `5` having the same the number of `1` bits i.e. `101`. +Input: @N = (1, 4, 2, 8) +Output: 8412 +Input: @N = (4, 1, 7, 6) +Output: 7614 ~~~~ -Input: $N = 12 -Output: 17 -~~~~ - -Binary representation of `$N` is `1100`. There are two `1` bits. So the next -higher integer is `17` having the same number of `1` bits i.e. `10001`. ### Solutions -* [GNU AWK](awk/ch-2.gawk) -* [Bash](bash/ch-2.sh) -* [C](c/ch-2.c) -* [Perl](perl/ch-2.pl) ### Blog -[Higher Integet Set Bits](https://abigail.github.io/HTML/Perl-Weekly-Challenge/week-114-2.html) +[String Chain](https://abigail.github.io/HTML/Perl-Weekly-Challenge/week-115-2.html) -- cgit From 9def9e9e8ab96a506f322adf88fbdb182fd9acb7 Mon Sep 17 00:00:00 2001 From: Abigail Date: Mon, 31 May 2021 13:06:05 +0200 Subject: Tests for week 115 --- challenge-115/abigail/t/ctest.ini | 8 ++++++++ challenge-115/abigail/t/input-1-1 | 2 ++ challenge-115/abigail/t/input-2-1 | 3 +++ challenge-115/abigail/t/output-1-1.exp | 2 ++ challenge-115/abigail/t/output-2-1.exp | 3 +++ 5 files changed, 18 insertions(+) create mode 100644 challenge-115/abigail/t/ctest.ini create mode 100644 challenge-115/abigail/t/input-1-1 create mode 100644 challenge-115/abigail/t/input-2-1 create mode 100644 challenge-115/abigail/t/output-1-1.exp create mode 100644 challenge-115/abigail/t/output-2-1.exp diff --git a/challenge-115/abigail/t/ctest.ini b/challenge-115/abigail/t/ctest.ini new file mode 100644 index 0000000000..527781acbb --- /dev/null +++ b/challenge-115/abigail/t/ctest.ini @@ -0,0 +1,8 @@ +# +# Configuration file for running tests, using ctest. +# See https://github.com/Abigail/Misc/blob/master/ctest +# + +[names] +1-1 = Given Examples +2-1 = Given Examples diff --git a/challenge-115/abigail/t/input-1-1 b/challenge-115/abigail/t/input-1-1 new file mode 100644 index 0000000000..839d61045e --- /dev/null +++ b/challenge-115/abigail/t/input-1-1 @@ -0,0 +1,2 @@ +abc dea cd +ade cbd fgh diff --git a/challenge-115/abigail/t/input-2-1 b/challenge-115/abigail/t/input-2-1 new file mode 100644 index 0000000000..151a3fb733 --- /dev/null +++ b/challenge-115/abigail/t/input-2-1 @@ -0,0 +1,3 @@ +1 0 2 6 +1 4 2 8 +4 1 7 6 diff --git a/challenge-115/abigail/t/output-1-1.exp b/challenge-115/abigail/t/output-1-1.exp new file mode 100644 index 0000000000..b261da18d5 --- /dev/null +++ b/challenge-115/abigail/t/output-1-1.exp @@ -0,0 +1,2 @@ +1 +0 diff --git a/challenge-115/abigail/t/output-2-1.exp b/challenge-115/abigail/t/output-2-1.exp new file mode 100644 index 0000000000..8e6281d33b --- /dev/null +++ b/challenge-115/abigail/t/output-2-1.exp @@ -0,0 +1,3 @@ +6210 +8412 +7614 -- cgit From 4f04dab2323d4219a5eb906c4bbc28059fecb10c Mon Sep 17 00:00:00 2001 From: Abigail Date: Mon, 31 May 2021 20:16:50 +0200 Subject: AWK, Bash, C, Lua, Node.js, Perl, Python and Ruby solutions for week 115, part 2 --- challenge-115/abigail/README.md | 8 ++++ challenge-115/abigail/awk/ch-2.awk | 56 ++++++++++++++++++++++++++++ challenge-115/abigail/bash/ch-2.sh | 52 ++++++++++++++++++++++++++ challenge-115/abigail/c/ch-2.c | 71 ++++++++++++++++++++++++++++++++++++ challenge-115/abigail/lua/ch-2.lua | 59 ++++++++++++++++++++++++++++++ challenge-115/abigail/node/ch-2.js | 53 +++++++++++++++++++++++++++ challenge-115/abigail/perl/ch-2.pl | 44 ++++++++++++++++++++++ challenge-115/abigail/python/ch-2.py | 49 +++++++++++++++++++++++++ challenge-115/abigail/ruby/ch-2.rb | 57 +++++++++++++++++++++++++++++ 9 files changed, 449 insertions(+) create mode 100644 challenge-115/abigail/awk/ch-2.awk create mode 100644 challenge-115/abigail/bash/ch-2.sh create mode 100644 challenge-115/abigail/c/ch-2.c create mode 100644 challenge-115/abigail/lua/ch-2.lua create mode 100644 challenge-115/abigail/node/ch-2.js create mode 100644 challenge-115/abigail/perl/ch-2.pl create mode 100644 challenge-115/abigail/python/ch-2.py create mode 100644 challenge-115/abigail/ruby/ch-2.rb diff --git a/challenge-115/abigail/README.md b/challenge-115/abigail/README.md index 75cec1ed8e..0d966f083c 100644 --- a/challenge-115/abigail/README.md +++ b/challenge-115/abigail/README.md @@ -43,6 +43,14 @@ Output: 7614 ~~~~ ### Solutions +* [AWK](awk/ch-2.awk) +* [Bash](bash/ch-2.sh) +* [C](c/ch-2.c) +* [Lua](lua/ch-2.lua) +* [Node.js](node/ch-2.js) +* [Perl](perl/ch-2.pl) +* [Python](python/ch-2.py) +* [Ruby](ruby/ch-2.rb) ### Blog [String Chain](https://abigail.github.io/HTML/Perl-Weekly-Challenge/week-115-2.html) diff --git a/challenge-115/abigail/awk/ch-2.awk b/challenge-115/abigail/awk/ch-2.awk new file mode 100644 index 0000000000..2b2162d5f0 --- /dev/null +++ b/challenge-115/abigail/awk/ch-2.awk @@ -0,0 +1,56 @@ +#!/usr/bin/awk + +# +# See ../README.md +# + +# +# Run as: awk -f ch-2.awk < input-file +# + +{ + # + # Initialize digits array + # + for (i = 0; i < 10; i ++) { + digits [i] = 0 + } + + # + # Read in the data; count digits + # + for (i = 1; i <= NF; i ++) { + digits [$i] ++ + } + + # + # Find the smallest even number; this one goes last + # + last = -1 + for (i = 0; i < 10 && last < 0; i += 2) { + if (digits [i] > 0) { + last = i + digits [i] -- + } + } + + # + # Skip if the input does not contain an even digit + # + if (last < 0) { + next + } + + # + # Create the output: rest of digits are from highest to lowest + # + out = "" + for (i = 9; i >= 0; i --) { + while (digits [i] -- > 0) { + out = out i + } + } + print out last +} + + diff --git a/challenge-115/abigail/bash/ch-2.sh b/challenge-115/abigail/bash/ch-2.sh new file mode 100644 index 0000000000..3da1e61c2b --- /dev/null +++ b/challenge-115/abigail/bash/ch-2.sh @@ -0,0 +1,52 @@ +#!/bin/sh + +# +# See ../README.md +# + +# +# Run as: bash ch-2.sh < input-file +# + +declare -a digits + +while read -a input +do # + # Count the digits of the input + # + unset digits + for ((i = 0; i < ${#input[@]}; i ++)) + do ((digits[input[i]] ++)) + done + + # + # Find smallest even number; this will be last number. + # + last=-1 + for ((i = 8; i >= 0; i -= 2)) + do if ((digits[i] > 0)) + then ((last = i)) + fi + done + + # + # Skip if the input doesn't contain an even digit + # + if ((last < 0)) + then continue + fi + + ((digits[last] --)) + + # + # Create the output + # + out="" + for ((i = 9; i >= 0; i --)) + do for ((j = 0; j < digits[i]; j ++)) + do out=$out$i + done + done + + echo $out$last +done diff --git a/challenge-115/abigail/c/ch-2.c b/challenge-115/abigail/c/ch-2.c new file mode 100644 index 0000000000..975aace0ef --- /dev/null +++ b/challenge-115/abigail/c/ch-2.c @@ -0,0 +1,71 @@ +# include +# include +# include +# include + +/* + * See ../README.md + */ + +/* + * Run as: cc -o ch-2.o ch-2.c; ./ch-2.o < input-file + */ + +# define NR_OF_DIGITS 10 +# define ZERO '0' + +int main (void) { + char * line = NULL; + size_t len = 0; + size_t str_len; + + while ((str_len = getline (&line, &len, stdin)) != -1) { + /* + * Read in a line of data. Count the number of digits, + * and put them in an array 'digits'. + */ + char * line_ptr = line; + int digits [NR_OF_DIGITS]; + for (size_t i = 0; i < NR_OF_DIGITS; i ++) { + digits [i] = 0; + } + while (* line_ptr) { + if (isdigit (* line_ptr)) { + digits [* line_ptr - ZERO] ++; + } + line_ptr ++; + } + + /* + * Find the lowest even digit. + */ + int last = -1; + for (ssize_t i = NR_OF_DIGITS - 2; i >= 0; i -= 2) { + if (digits [i]) { + last = i; + } + } + + /* + * Skip if the input does not contain an even digit. + */ + if (last < 0) { + continue; + } + digits [last] --; + + /* + * Print the output + */ + for (ssize_t i = NR_OF_DIGITS - 1; i >= 0; i --) { + for (int j = 0; j < digits [i]; j ++) { + printf ("%zu", i); + } + } + printf ("%d\n", last); + + } + free (line); + + return (0); +} diff --git a/challenge-115/abigail/lua/ch-2.lua b/challenge-115/abigail/lua/ch-2.lua new file mode 100644 index 0000000000..4b92535d53 --- /dev/null +++ b/challenge-115/abigail/lua/ch-2.lua @@ -0,0 +1,59 @@ +#!/opt/local/bin/lua + +-- +-- See ../README.md +-- + +-- +-- Run as: lua ch-2.lua < input-file +-- + +local NR_OF_DIGITS = 10 + +for line in io . lines () do + + -- + -- Process the input, count digits + -- + local digits = {} + for i = 0, NR_OF_DIGITS - 1 + do digits [i] = 0 + end + for d in line : gmatch ("%d") + do d = tonumber (d) + digits [d] = digits [d] + 1 + end + + -- + -- Find the lowest even digit + -- + local last = -1 + for i = NR_OF_DIGITS - 2, 0, -2 + do if digits [i] > 0 + then last = i + end + end + + -- + -- Skip if there is no even digit in the input + -- + if last < 0 + then goto end_loop + end + + digits [last] = digits [last] - 1 + + -- + -- Create output: digits from high to low + -- + local out = "" + for i = NR_OF_DIGITS - 1, 0, -1 + do for j = 1, digits [i] + do out = out .. tostring (i) + end + end + + print (out .. tostring (last)) + + ::end_loop:: +end diff --git a/challenge-115/abigail/node/ch-2.js b/challenge-115/abigail/node/ch-2.js new file mode 100644 index 0000000000..3e76bf958c --- /dev/null +++ b/challenge-115/abigail/node/ch-2.js @@ -0,0 +1,53 @@ +#!/usr/local/bin/node + +// +// See ../README.md +// + +// +// Run as: node ch-2.js < input-file +// + +let NR_OF_DIGITS = 10 + + require ('readline') +. createInterface ({input: process . stdin}) +. on ('line', _ => { + // + // Parse the input: count the digits + // + let digits = [] + for (let i = 0; i < NR_OF_DIGITS; i ++) { + digits [i] = 0 + } + _ . split (/\s+/) . map (_ => {digits [+_] ++}) + + // + // Find the smallest even number + // + let last = -1; + for (let i = 0; i < NR_OF_DIGITS && last < 0; i += 2) { + if (digits [i] > 0) { + last = i + digits [i] -- + } + } + + // + // Skip if there are no even digits in the input + // + if (last < 0) { + return + } + + // + // Create the output: print the remaining numbers from high to low + // + let out = "" + for (let i = NR_OF_DIGITS - 1; i >= 0; i --) { + for (let j = 0; j < digits [i]; j ++) { + out = out + i . toString () + } + } + console . log (out + last . toString ()) +}) diff --git a/challenge-115/abigail/perl/ch-2.pl b/challenge-115/abigail/perl/ch-2.pl new file mode 100644 index 0000000000..c0adf3617f --- /dev/null +++ b/challenge-115/abigail/perl/ch-2.pl @@ -0,0 +1,44 @@ +#!/opt/perl/bin/perl + +use 5.032; + +use strict; +use warnings; +no warnings 'syntax'; + +use experimental 'signatures'; +use experimental 'lexical_subs'; + +# +# See ../README.md +# + +# +# Run as: perl ch-2.pl < input-file +# + +my @DIGITS = (0 .. 9); +my @EVENS = grep {$_ % 2 == 0} @DIGITS; + +while (<>) { + # + # Read in data, store counts of each digit. + # + my @digits = (0) x @DIGITS; + $digits [$_] ++ for do {local $" = ""; /[@DIGITS]/g}; + + # + # The last number of the output should be the smallest + # even number in the input. If there is no even number + # in the input, skip it. + # + my ($last) = grep {$digits [$_]} @EVENS; + next unless defined $last; + $digits [$last] --; + + # + # Print the result, with the highest numbers first. + # + print join "" => map {$_ x $digits [$_]} reverse @DIGITS; + say $last; +} diff --git a/challenge-115/abigail/python/ch-2.py b/challenge-115/abigail/python/ch-2.py new file mode 100644 index 0000000000..a3b040b832 --- /dev/null +++ b/challenge-115/abigail/python/ch-2.py @@ -0,0 +1,49 @@ +#!/opt/local/bin/python + +# +# See ../README.md +# + +# +# Run as: python ch-2.py < input-file +# + +import fileinput + +NR_OF_DIGITS = 10 + +for line in fileinput . input (): + # + # Parse the input, count digits + # + digits = [] + for d in range (NR_OF_DIGITS): + digits . append (0) + for d in line . split (): + d = int (d) + digits [d] = digits [d] + 1 + + # + # Find the smallest even number + # + last = -1 + + for d in range (NR_OF_DIGITS - 2, -1, -2): + if digits [d] > 0: + last = d + + # + # If we don't have an even number, skip + # + if last < 0: + continue + digits [last] = digits [last] - 1 + + # + # Print the rest of the digits, highest to lowest + # + for d in range (NR_OF_DIGITS - 1, 0, -1): + for i in range (digits [d]): + print (d, end = '') + + print (last) diff --git a/challenge-115/abigail/ruby/ch-2.rb b/challenge-115/abigail/ruby/ch-2.rb new file mode 100644 index 0000000000..e1e41a91fd --- /dev/null +++ b/challenge-115/abigail/ruby/ch-2.rb @@ -0,0 +1,57 @@ +#!/usr/bin/ruby + +# +# See ../README.md +# + +# +# Run as: ruby ch-2.rb < input-file +# + +nr_of_digits = 10 + +ARGF . each_line do + |line| + # + # Read the input and count the digits + # + digits = [] + for d in 0 .. nr_of_digits - 1 do + digits [d] = 0 + end + line . split() . each do + |d| + digits [d . to_i] += 1 + end + + # + # Find the lowest even number + # + last = -1 + for i in 1 .. nr_of_digits do + d = nr_of_digits - i + if d % 2 == 0 && digits [d] > 0 + then last = d + end + end + + # + # Skip if the input does not contain an even number + # + if last < 0 + then next + end + + digits [last] -= 1 + + # + # Print the digits, highest to lowest + # + for i in 1 .. nr_of_digits do + d = nr_of_digits - i + for j in 1 .. digits [d] do + print (d) + end + end + puts (last) +end -- cgit From 717cb4975a04df17b5fef5b5a8f6780ce3c33f22 Mon Sep 17 00:00:00 2001 From: ziameraj16 Date: Wed, 2 Jun 2021 17:09:39 +0100 Subject: Add java solution for Largest Multiple --- challenge-115/ziameraj16/java/LargestMultiple.java | 39 ++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 challenge-115/ziameraj16/java/LargestMultiple.java diff --git a/challenge-115/ziameraj16/java/LargestMultiple.java b/challenge-115/ziameraj16/java/LargestMultiple.java new file mode 100644 index 0000000000..ada2d9226a --- /dev/null +++ b/challenge-115/ziameraj16/java/LargestMultiple.java @@ -0,0 +1,39 @@ +import java.util.*; +import java.util.stream.Collectors; + +public class LargestMultiple { + + public static void main(String[] args) { + Scanner scanner = new Scanner(System.in); + System.out.println("Enter comma separate numbers"); + final String input = scanner.nextLine(); + final List list = Arrays.stream(input.split(",")).map(Integer::valueOf).collect(Collectors.toList()); + System.out.print("Output: "); + getLargestMultiple(list).stream().forEach(System.out::print); + System.out.println(); + } + + public static List getLargestMultiple(List list) { + final List sortedList = list.stream().sorted(Comparator.reverseOrder()).collect(Collectors.toList()); + if (sortedList.get(sortedList.size() - 1) % 2 == 0) { + return sortedList; + } else { + int i = list.size() - 2; + while (true) { + if (sortedList.get(i) % 2 == 0) { + List newList = new ArrayList<>(list.size()); + for (int j = 0; j <= i - 1; j++) { + newList.add(sortedList.get(j)); + } + for (int j = i + 1; j < list.size(); j++) { + newList.add(sortedList.get(j)); + } + newList.add(sortedList.get(i)); + return newList; + } + i--; + } + } + } +} + -- cgit From a1b01d8106113516b5e659cfd983ef15eacced12 Mon Sep 17 00:00:00 2001 From: ziameraj16 Date: Wed, 2 Jun 2021 17:13:01 +0100 Subject: Add README --- challenge-115/ziameraj16/README.md | 52 ++++++++++++-------------------------- 1 file changed, 16 insertions(+), 36 deletions(-) diff --git a/challenge-115/ziameraj16/README.md b/challenge-115/ziameraj16/README.md index d066640c97..ff4bd72a2f 100644 --- a/challenge-115/ziameraj16/README.md +++ b/challenge-115/ziameraj16/README.md @@ -1,47 +1,27 @@ -# Next Palindrome Number +# Largest Multiple ## Java Solution To compile the code run ```java -javac NextPalindromeNumber.java +javac LargestMultiple.java ``` To run ```java -java NextPalindromeNumber +java LargestMultiple ``` ### Example ```bash -/perlweeklychallenge-club/challenge-114/ziameraj16/java$ javac NextPalindromeNumber.java -/perlweeklychallenge-club/challenge-114/ziameraj16/java$ java NextPalindromeNumber -Enter the number -1234 -1331 -/perlweeklychallenge-club/challenge-114/ziameraj16/java$ java NextPalindromeNumber -Enter the number -999 -1001 -``` - -# Higher Integer Sets Bits -## Java Solution - -To compile the code run -```java -javac HigherIntegerSetBits.java -``` -To run -```java -java HigherIntegerSetBits -``` -### Example -```bash -/perlweeklychallenge-club/challenge-114/ziameraj16/java$ javac HigherIntegerSetBits.java -/perlweeklychallenge-club/challenge-114/ziameraj16/java$ java HigherIntegerSetBits -Enter the number -3 -5 -/perlweeklychallenge-club/challenge-114/ziameraj16/java$ java HigherIntegerSetBits -Enter the number -12 -17 +/perlweeklychallenge-club/challenge-115/ziameraj16/java$ javac LargestMultiple.java +/perlweeklychallenge-club/challenge-115/ziameraj16/java$ java LargestMultiple +Enter comma separate numbers +1,0,2,6 +Output: 6210 +/perlweeklychallenge-club/challenge-115/ziameraj16/java$ java LargestMultiple +Enter comma separate numbers +1,4,2,8 +Output: 8412 +/perlweeklychallenge-club/challenge-115/ziameraj16/java$ java LargestMultiple +Enter comma separate numbers +4,1,7,6 +Output: 7614 ``` -- cgit From be4538eab6cd1a2f7ec0588d038659d1fe79e219 Mon Sep 17 00:00:00 2001 From: brtastic Date: Fri, 4 Jun 2021 00:04:22 +0200 Subject: Perl solution to ch-1 by Bartosz Jarzyna --- challenge-115/brtastic/blog.txt | 1 + challenge-115/brtastic/perl/ch-1.pl | 40 +++++++++++++++++++++++++++++++++++++ 2 files changed, 41 insertions(+) create mode 100644 challenge-115/brtastic/blog.txt create mode 100644 challenge-115/brtastic/perl/ch-1.pl diff --git a/challenge-115/brtastic/blog.txt b/challenge-115/brtastic/blog.txt new file mode 100644 index 0000000000..36d46f06e5 --- /dev/null +++ b/challenge-115/brtastic/blog.txt @@ -0,0 +1 @@ +https://brtastic.xyz/blog/article/zipping-arrays-in-perl diff --git a/challenge-115/brtastic/perl/ch-1.pl b/challenge-115/brtastic/perl/ch-1.pl new file mode 100644 index 0000000000..23375670c0 --- /dev/null +++ b/challenge-115/brtastic/perl/ch-1.pl @@ -0,0 +1,40 @@ +use v5.34; +use warnings; + +use Algorithm::Permute; +use List::Util qw(zip all); + +sub comes_after +{ + my ($previous, $next) = @_; + + return substr($previous, -1) eq substr($next, 0, 1); +} + +sub check_string_chain +{ + my @string_list = @_; + + my $iterator = Algorithm::Permute->new(\@string_list); + + while (my @case = $iterator->next) { + my @to_compare = @case; + push @to_compare, shift @to_compare; + + return 1 if all { + comes_after $_->@* + } zip \@case, \@to_compare; + } + + return 0; +} + +use Test::More; + +is check_string_chain(qw), 1; +is check_string_chain(qw), 0; +is check_string_chain(qw), 1; +is check_string_chain(qw), 0; +is check_string_chain(qw), 0; + +done_testing; -- cgit From 343b58442479f9236d1a7058e64fe2a003e6f827 Mon Sep 17 00:00:00 2001 From: Mohammad S Anwar Date: Fri, 4 Jun 2021 00:06:49 +0100 Subject: - Added solutions by Bartosz Jarzyna. --- stats/pwc-current.json | 283 ++--- stats/pwc-language-breakdown-summary.json | 66 +- stats/pwc-language-breakdown.json | 1654 ++++++++++++++--------------- stats/pwc-leaders.json | 728 ++++++------- stats/pwc-summary-1-30.json | 94 +- stats/pwc-summary-121-150.json | 90 +- stats/pwc-summary-151-180.json | 50 +- stats/pwc-summary-181-210.json | 32 +- stats/pwc-summary-211-240.json | 46 +- stats/pwc-summary-31-60.json | 110 +- stats/pwc-summary-61-90.json | 98 +- stats/pwc-summary-91-120.json | 48 +- stats/pwc-summary.json | 34 +- 13 files changed, 1676 insertions(+), 1657 deletions(-) diff --git a/stats/pwc-current.json b/stats/pwc-current.json index da8bacd0af..1587c0f196 100644 --- a/stats/pwc-current.json +++ b/stats/pwc-current.json @@ -1,19 +1,121 @@ { - "plotOptions" : { - "series" : { - "borderWidth" : 0, - "dataLabels" : { - "enabled" : 1, - "format" : "{point.y}" - } + "chart" : { + "type" : "column" + }, + "series" : [ + { + "colorByPoint" : 1, + "data" : [ + { + "y" : 2, + "drilldown" : "Andinus", + "name" : "Andinus" + }, + { + "drilldown" : "Bartosz Jarzyna", + "name" : "Bartosz Jarzyna", + "y" : 2 + }, + { + "y" : 2, + "name" : "Dave Cross", + "drilldown" : "Dave Cross" + }, + { + "y" : 3, + "drilldown" : "Dave Jacoby", + "name" : "Dave Jacoby" + }, + { + "y" : 2, + "name" : "E. Choroba", + "drilldown" : "E. Choroba" + }, + { + "y" : 2, + "name" : "Feng Chang", + "drilldown" : "Feng Chang" + }, + { + "name" : "Flavio Poletti", + "drilldown" : "Flavio Poletti", + "y" : 6 + }, + { + "drilldown" : "James Smith", + "name" : "James Smith", + "y" : 2 + }, + { + "y" : 4, + "name" : "Luca Ferrari", + "drilldown" : "Luca Ferrari" + }, + { + "name" : "Mark Anderson", + "drilldown" : "Mark Anderson", + "y" : 1 + }, + { + "y" : 2, + "name" : "Niels van Dijke", + "drilldown" : "Niels van Dijke" + }, + { + "drilldown" : "Pete Houston", + "name" : "Pete Houston", + "y" : 2 + }, + { + "y" : 4, + "drilldown" : "Roger Bell_West", + "name" : "Roger Bell_West" + }, + { + "drilldown" : "Simon Green", + "name" : "Simon Green", + "y" : 3 + }, + { + "drilldown" : "Stuart Little", + "name" : "Stuart Little", + "y" : 4 + }, + { + "y" : 4, + "name" : "Ulrich Rieke", + "drilldown" : "Ulrich Rieke" + }, + { + "drilldown" : "W. Luis Mochan", + "name" : "W. Luis Mochan", + "y" : 3 + } + ], + "name" : "Perl Weekly Challenge - 115" } + ], + "title" : { + "text" : "Perl Weekly Challenge - 115" }, - "subtitle" : { - "text" : "[Champions: 16] Last updated at 2021-06-02 13:34:20 GMT" + "xAxis" : { + "type" : "category" + }, + "tooltip" : { + "headerFormat" : "{series.name}
", + "followPointer" : 1, + "pointFormat" : "{point.name}: {point.y:f}
" + }, + "yAxis" : { + "title" : { + "text" : "Total Solutions" + } }, "drilldown" : { "series" : [ { + "id" : "Andinus", + "name" : "Andinus", "data" : [ [ "Raku", @@ -23,22 +125,33 @@ "Blog", 1 ] + ] + }, + { + "data" : [ + [ + "Perl", + 1 + ], + [ + "Blog", + 1 + ] ], - "id" : "Andinus", - "name" : "Andinus" + "name" : "Bartosz Jarzyna", + "id" : "Bartosz Jarzyna" }, { - "name" : "Dave Cross", "id" : "Dave Cross", "data" : [ [ "Perl", 2 ] - ] + ], + "name" : "Dave Cross" }, { - "id" : "Dave Jacoby", "name" : "Dave Jacoby", "data" : [ [ @@ -49,7 +162,8 @@ "Blog", 1 ] - ] + ], + "id" : "Dave Jacoby" }, { "data" : [ @@ -58,8 +172,8 @@ 2 ] ], - "id" : "E. Choroba", - "name" : "E. Choroba" + "name" : "E. Choroba", + "id" : "E. Choroba" }, { "id" : "Feng Chang", @@ -100,6 +214,7 @@ "id" : "James Smith" }, { + "id" : "Luca Ferrari", "data" : [ [ "Raku", @@ -110,18 +225,17 @@ 2 ] ], - "name" : "Luca Ferrari", - "id" : "Luca Ferrari" + "name" : "Luca Ferrari" }, { - "id" : "Mark Anderson", "name" : "Mark Anderson", "data" : [ [ "Raku", 1 ] - ] + ], + "id" : "Mark Anderson" }, { "data" : [ @@ -144,8 +258,8 @@ "id" : "Pete Houston" }, { - "name" : "Roger Bell_West", "id" : "Roger Bell_West", + "name" : "Roger Bell_West", "data" : [ [ "Perl", @@ -158,8 +272,6 @@ ] }, { - "name" : "Simon Green", - "id" : "Simon Green", "data" : [ [ "Perl", @@ -169,9 +281,12 @@ "Blog", 1 ] - ] + ], + "name" : "Simon Green", + "id" : "Simon Green" }, { + "name" : "Stuart Little", "data" : [ [ "Perl", @@ -182,11 +297,9 @@ 2 ] ], - "name" : "Stuart Little", "id" : "Stuart Little" }, { - "name" : "Ulrich Rieke", "id" : "Ulrich Rieke", "data" : [ [ @@ -197,7 +310,8 @@ "Raku", 2 ] - ] + ], + "name" : "Ulrich Rieke" }, { "data" : [ @@ -215,114 +329,19 @@ } ] }, - "title" : { - "text" : "Perl Weekly Challenge - 115" - }, - "yAxis" : { - "title" : { - "text" : "Total Solutions" - } - }, "legend" : { "enabled" : 0 }, - "tooltip" : { - "pointFormat" : "{point.name}: {point.y:f}
", - "headerFormat" : "{series.name}
", - "followPointer" : 1 - }, - "series" : [ - { - "colorByPoint" : 1, - "name" : "Perl Weekly Challenge - 115", - "data" : [ - { - "drilldown" : "Andinus", - "y" : 2, - "name" : "Andinus" - }, - { - "y" : 2, - "name" : "Dave Cross", - "drilldown" : "Dave Cross" - }, - { - "y" : 3, - "name" : "Dave Jacoby", - "drilldown" : "Dave Jacoby" - }, - { - "y" : 2, - "name" : "E. Choroba", - "drilldown" : "E. Choroba" - }, - { - "name" : "Feng Chang", - "y" : 2, - "drilldown" : "Feng Chang" - }, - { - "y" : 6, - "name" : "Flavio Poletti", - "drilldown" : "Flavio Poletti" - }, - { - "y" : 2, - "name" : "James Smith", - "drilldown" : "James Smith" - }, - { - "name" : "Luca Ferrari", - "y" : 4, - "drilldown" : "Luca Ferrari" - }, - { - "name" : "Mark Anderson", - "y" : 1, - "drilldown" : "Mark Anderson" - }, - { - "drilldown" : "Niels van Dijke", - "name" : "Niels van Dijke", - "y" : 2 - }, - { - "drilldown" : "Pete Houston", - "y" : 2, - "name" : "Pete Houston" - }, - { - "name" : "Roger Bell_West", - "y" : 4, - "drilldown" : "Roger Bell_West" - }, - { - "y" : 3, - "name" : "Simon Green", - "drilldown" : "Simon Green" - }, - { - "drilldown" : "Stuart Little", - "name" : "Stuart Little", - "y" : 4 - }, - { - "name" : "Ulrich Rieke", - "y" : 4, - "drilldown" : "Ulrich Rieke" - }, - { - "name" : "W. Luis Mochan", - "y" : 3, - "drilldown" : "W. Luis Mochan" - } - ] + "plotOptions" : { + "series" : { + "dataLabels" : { + "format" : "{point.y}", + "enabled" : 1 + }, + "borderWidth" : 0 } - ], - "chart" : { - "type" : "column" }, - "xAxis" : { - "type" : "category" + "subtitle" : { + "text" : "[Champions: 17] Last updated at 2021-06-03 23:06:32 GMT" } } diff --git a/stats/pwc-language-breakdown-summary.json b/stats/pwc-language-breakdown-summary.json index 28b544405e..4be72d1c6d 100644 --- a/stats/pwc-language-breakdown-summary.json +++ b/stats/pwc-language-breakdown-summary.json @@ -1,63 +1,63 @@ { - "title" : { - "text" : "Perl Weekly Challenge Contributions [2019 - 2020]" - }, - "yAxis" : { - "min" : 0, - "title" : { - "text" : null - } - }, "legend" : { "enabled" : "false" }, - "tooltip" : { - "pointFormat" : "{point.y:.0f}" + "subtitle" : { + "text" : "Last updated at 2021-06-03 23:06:32 GMT" + }, + "chart" : { + "type" : "column" }, "series" : [ { - "dataLabels" : { - "rotation" : -90, - "enabled" : "true", - "align" : "right", - "style" : { - "fontSize" : "13px", - "fontFamily" : "Verdana, sans-serif" - }, - "y" : 10, - "color" : "#FFFFFF", - "format" : "{point.y:.0f}" - }, - "name" : "Contributions", "data" : [ [ "Blog", - 1613 + 1614 ], [ "Perl", - 5431 + 5432 ], [ "Raku", 3449 ] - ] + ], + "name" : "Contributions", + "dataLabels" : { + "rotation" : -90, + "y" : 10, + "enabled" : "true", + "format" : "{point.y:.0f}", + "align" : "right", + "style" : { + "fontFamily" : "Verdana, sans-serif", + "fontSize" : "13px" + }, + "color" : "#FFFFFF" + } } ], - "chart" : { - "type" : "column" + "title" : { + "text" : "Perl Weekly Challenge Contributions [2019 - 2020]" + }, + "tooltip" : { + "pointFormat" : "{point.y:.0f}" }, "xAxis" : { "labels" : { "style" : { - "fontSize" : "13px", - "fontFamily" : "Verdana, sans-serif" + "fontFamily" : "Verdana, sans-serif", + "fontSize" : "13px" } }, "type" : "category" }, - "subtitle" : { - "text" : "Last updated at 2021-06-02 13:34:19 GMT" + "yAxis" : { + "min" : 0, + "title" : { + "text" : null + } } } diff --git a/stats/pwc-language-breakdown.json b/stats/pwc-language-breakdown.json index d23858f31c..d31a9dc243 100644 --- a/stats/pwc-language-breakdown.json +++ b/stats/pwc-language-breakdown.json @@ -1,612 +1,24 @@ { - "series" : [ - { - "data" : [ - { - "y" : 161, - "name" : "#001", - "drilldown" : "001" - }, - { - "name" : "#002", - "y" : 125, - "drilldown" : "002" - }, - { - "drilldown" : "003", - "y" : 81, - "name" : "#003" - }, - { - "y" : 99, - "name" : "#004", - "drilldown" : "004" - }, - { - "drilldown" : "005", - "y" : 78, - "name" : "#005" - }, - { - "y" : 58, - "name" : "#006", - "drilldown" : "006" - }, - { - "y" : 64, - "name" : "#007", - "drilldown" : "007" - }, - { - "y" : 78, - "name" : "#008", - "drilldown" : "008" - }, - { - "drilldown" : "009", - "y" : 76, - "name" : "#009" - }, - { - "y" : 65, - "name" : "#010", - "drilldown" : "010" - }, - { - "drilldown" : "011", - "y" : 85, - "name" : "#011" - }, - { - "drilldown" : "012", - "y" : 89, - "name" : "#012" - }, - { - "drilldown" : "013", - "name" : "#013", - "y" : 85 - }, - { - "drilldown" : "014", - "name" : "#014", - "y" : 101 - }, - { - "y" : 99, - "name" : "#015", - "drilldown" : "015" - }, - { - "drilldown" : "016", - "y" : 71, - "name" : "#016" - }, - { - "y" : 84, - "name" : "#017", - "drilldown" : "017" - }, - { - "name" : "#018", - "y" : 81, - "drilldown" : "018" - }, - { - "name" : "#019", - "y" : 103, - "drilldown" : "019" - }, - { - "name" : "#020", - "y" : 101, - "drilldown" : "020" - }, - { - "drilldown" : "021", - "name" : "#021", - "y" : 72 - }, - { - "name" : "#022", - "y" : 68, - "drilldown" : "022" - }, - { - "drilldown" : "023", - "y" : 97, - "name" : "#023" - }, - { - "y" : 74, - "name" : "#024", - "drilldown" : "024" - }, - { - "drilldown" : "025", - "y" : 59, - "name" : "#025" - }, - { - "name" : "#026", - "y" : 74, - "drilldown" : "026" - }, - { - "drilldown" : "027", - "name" : "#027", - "y" : 60 - }, - { - "drilldown" : "028", - "y" : 80, - "name" : "#028" - }, - { - "drilldown" : "029", - "name" : "#029", - "y" : 79 - }, - { - "y" : 117, - "name" : "#030", - "drilldown" : "030" - }, - { - "y" : 89, - "name" : "#031", - "drilldown" : "031" - }, - { - "drilldown" : "032", - "name" : "#032", - "y" : 94 - }, - { - "drilldown" : "033", - "y" : 110, - "name" : "#033" - }, - { - "name" : "#034", - "y" : 64, - "drilldown" : "034" - }, - { - "name" : "#035", - "y" : 64, - "drilldown" : "035" - }, - { - "drilldown" : "036", - "y" : 68, - "name" : "#036" - }, - { - "drilldown" : "037", - "y" : 67, - "name" : "#037" - }, - { - "y" : 68, - "name" : "#038", - "drilldown" : "038" - }, - { - "drilldown" : "039", - "y" : 62, - "name" : "#039" - }, - { - "name" : "#040", - "y" : 73, - "drilldown" : "040" - }, - { - "drilldown" : "041", - "name" : "#041", - "y" : 76 - }, - { - "y" : 92, - "name" : "#042", - "drilldown" : "042" - }, - { - "drilldown" : "043", - "name" : "#043", - "y" : 68 - }, - { - "name" : "#044", - "y" : 85, - "drilldown" : "044" - }, - { - "name" : "#045", - "y" : 96, - "drilldown" : "045" - }, - { - "name" : "#046", - "y" : 87, - "drilldown" : "046" - }, - { - "name" : "#047", - "y" : 84, - "drilldown" : "047" - }, - { - "y" : 108, - "name" : "#048", - "drilldown" : "048" - }, - { - "drilldown" : "049", - "y" : 89, - "name" : "#049" - }, - { - "y" : 98, - "name" : "#050", - "drilldown" : "050" - }, - { - "y" : 89, - "name" : "#051", - "drilldown" : "051" - }, - { - "name" : "#052", - "y" : 91, - "drilldown" : "052" - }, - { - "name" : "#053", - "y" : 101, - "drilldown" : "053" - }, - { - "name" : "#054", - "y" : 103, - "drilldown" : "054" - }, - { - "drilldown" : "055", - "name" : "#055", - "y" : 88 - }, - { - "drilldown" : "056", - "y" : 95, - "name" : "#056" - }, - { - "drilldown" : "057", - "y" : 80, - "name" : "#057" - }, - { - "y" : 69, - "name" : "#058", - "drilldown" : "058" - }, - { - "drilldown" : "059", - "name" : "#059", - "y" : 89 - }, - { - "y" : 85, - "name" : "#060", - "drilldown" : "060" - }, - { - "name" : "#061", - "y" : 81, - "drilldown" : "061" - }, - { - "y" : 58, - "name" : "#062", - "drilldown" : "062" - }, - { - "drilldown" : "063", - "name" : "#063", - "y" : 89 - }, - { - "name" : "#064", - "y" : 80, - "drilldown" : "064" - }, - { - "name" : "#065", - "y" : 73, - "drilldown" : "065" - }, - { - "drilldown" : "066", - "name" : "#066", - "y" : 84 - }, - { - "drilldown" : "067", - "name" : "#067", - "y" : 90 - }, - { - "name" : "#068", - "y" : 75, - "drilldown" : "068" - }, - { - "name" : "#069", - "y" : 83, - "drilldown" : "069" - }, - { - "drilldown" : "070", - "name" : "#070", - "y" : 93 - }, - { - "y" : 78, - "name" : "#071", - "drilldown" : "071" - }, - { - "drilldown" : "072", - "name" : "#072", - "y" : 112 - }, - { - "drilldown" : "073", - "y" : 110, - "name" : "#073" - }, - { - "name" : "#074", - "y" : 115, - "drilldown" : "074" - }, - { - "drilldown" : "075", - "name" : "#075", - "y" : 113 - }, - { - "drilldown" : "076", - "y" : 99, - "name" : "#076" - }, - { - "drilldown" : "077", - "y" : 98, - "name" : "#077" - }, - { - "y" : 127, - "name" : "#078", - "drilldown" : "078" - }, - { - "drilldown" : "079", - "name" : "#079", - "y" : 122 - }, - { - "drilldown" : "080", - "name" : "#080", - "y" : 127 - }, - { - "drilldown" : "081", - "name" : "#081", - "y" : 114 - }, - { - "drilldown" : "082", - "name" : "#082", - "y" : 114 - }, - { - "y" : 127, - "name" : "#083", - "drilldown" : "083" - }, - { - "y" : 119, - "name" : "#084", - "drilldown" : "084" - }, - { - "y" : 114, - "name" : "#085", - "drilldown" : "085" - }, - { - "drilldown" : "086", - "y" : 104, - "name" : "#086" - }, - { - "drilldown" : "087", - "y" : 101, - "name" : "#087" - }, - { - "drilldown" : "088", - "y" : 121, - "name" : "#088" - }, - { - "name" : "#089", - "y" : 113, - "drilldown" : "089" - }, - { - "name" : "#090", - "y" : 113, - "drilldown" : "090" - }, - { - "drilldown" : "091", - "y" : 108, - "name" : "#091" - }, - { - "y" : 98, - "name" : "#092", - "drilldown" : "092" - }, - { - "drilldown" : "093", - "y" : 87, - "name" : "#093" - }, - { - "drilldown" : "094", - "name" : "#094", - "y" : 87 - }, - { - "y" : 108, - "name" : "#095", - "drilldown" : "095" - }, - { - "name" : "#096", - "y" : 108, - "drilldown" : "096" - }, - { - "drilldown" : "097", - "name" : "#097", - "y" : 111 - }, - { - "name" : "#098", - "y" : 108, - "drilldown" : "098" - }, - { - "drilldown" : "099", - "name" : "#099", - "y" : 97 - }, - { - "name" : "#100", - "y" : 120, - "drilldown" : "100" - }, - { - "drilldown" : "101", - "name" : "#101", - "y" : 83 - }, - { - "drilldown" : "102", - "y" : 90, - "name" : "#102" - }, - { - "drilldown" : "103", - "name" : "#103", - "y" : 79 - }, - { - "y" : 84, - "name" : "#104", - "drilldown" : "104" - }, - { - "name" : "#105", - "y" : 73, - "drilldown" : "105" - }, - { - "drilldown" : "106", - "name" : "#106", - "y" : 97 - }, - { - "drilldown" : "107", - "y" : 88, - "name" : "#107" - }, - { - "y" : 92, - "name" : "#108", - "drilldown" : "108" - }, - { - "drilldown" : "109", - "name" : "#109", - "y" : 105 - }, - { - "name" : "#110", - "y" : 106, - "drilldown" : "110" - }, - { - "y" : 89, - "name" : "#111", - "drilldown" : "111" - }, - { - "y" : 90, - "name" : "#112", - "drilldown" : "112" - }, - { - "name" : "#113", - "y" : 90, - "drilldown" : "113" - }, - { - "name" : "#114", - "y" : 106, - "drilldown" : "114" - }, - { - "drilldown" : "115", - "name" : "#115", - "y" : 46 - } - ], - "name" : "Perl Weekly Challenge Languages", - "colorByPoint" : "true" - } - ], - "chart" : { - "type" : "column" - }, - "xAxis" : { - "type" : "category" - }, - "tooltip" : { - "pointFormat" : "Challenge {point.name}: {point.y:f}
", - "headerFormat" : "", - "followPointer" : "true" + "subtitle" : { + "text" : "Click the columns to drilldown the language breakdown. Last updated at 2021-06-03 23:06:32 GMT" }, - "yAxis" : { - "title" : { - "text" : "Total Solutions" + "plotOptions" : { + "series" : { + "borderWidth" : 0, + "dataLabels" : { + "format" : "{point.y}", + "enabled" : 1 + } } }, "legend" : { "enabled" : "false" }, - "title" : { - "text" : "Perl Weekly Challenge Language" - }, "drilldown" : { "series" : [ { + "id" : "001", + "name" : "001", "data" : [ [ "Perl", @@ -620,11 +32,10 @@ "Blog", 11 ] - ], - "name" : "001", - "id" : "001" + ] }, { + "id" : "002", "data" : [ [ "Perl", @@ -639,12 +50,11 @@ 10 ] ], - "id" : "002", "name" : "002" }, { - "name" : "003", "id" : "003", + "name" : "003", "data" : [ [ "Perl", @@ -679,8 +89,6 @@ ] }, { - "name" : "005", - "id" : "005", "data" : [ [ "Perl", @@ -694,7 +102,9 @@ "Blog", 12 ] - ] + ], + "name" : "005", + "id" : "005" }, { "data" : [ @@ -711,10 +121,12 @@ 7 ] ], - "id" : "006", - "name" : "006" + "name" : "006", + "id" : "006" }, { + "id" : "007", + "name" : "007", "data" : [ [ "Perl", @@ -728,13 +140,9 @@ "Blog", 10 ] - ], - "id" : "007", - "name" : "007" + ] }, { - "name" : "008", - "id" : "008", "data" : [ [ "Perl", @@ -748,11 +156,11 @@ "Blog", 12 ] - ] + ], + "name" : "008", + "id" : "008" }, { - "id" : "009", - "name" : "009", "data" : [ [ "Perl", @@ -766,11 +174,13 @@ "Blog", 13 ] - ] + ], + "name" : "009", + "id" : "009" }, { - "name" : "010", "id" : "010", + "name" : "010", "data" : [ [ "Perl", @@ -788,7 +198,6 @@ }, { "name" : "011", - "id" : "011", "data" : [ [ "Perl", @@ -802,7 +211,8 @@ "Blog", 10 ] - ] + ], + "id" : "011" }, { "data" : [ @@ -819,8 +229,8 @@ 11 ] ], - "id" : "012", - "name" : "012" + "name" : "012", + "id" : "012" }, { "data" : [ @@ -837,8 +247,8 @@ 13 ] ], - "id" : "013", - "name" : "013" + "name" : "013", + "id" : "013" }, { "id" : "014", @@ -860,7 +270,6 @@ }, { "name" : "015", - "id" : "015", "data" : [ [ "Perl", @@ -874,9 +283,11 @@ "Blog", 15 ] - ] + ], + "id" : "015" }, { + "name" : "016", "data" : [ [ "Perl", @@ -891,12 +302,11 @@ 12 ] ], - "name" : "016", "id" : "016" }, { - "name" : "017", "id" : "017", + "name" : "017", "data" : [ [ "Perl", @@ -913,7 +323,6 @@ ] }, { - "id" : "018", "name" : "018", "data" : [ [ @@ -928,7 +337,8 @@ "Blog", 14 ] - ] + ], + "id" : "018" }, { "data" : [ @@ -949,6 +359,7 @@ "id" : "019" }, { + "id" : "020", "data" : [ [ "Perl", @@ -963,8 +374,7 @@ 13 ] ], - "name" : "020", - "id" : "020" + "name" : "020" }, { "id" : "021", @@ -985,6 +395,8 @@ ] }, { + "id" : "022", + "name" : "022", "data" : [ [ "Perl", @@ -998,11 +410,11 @@ "Blog", 10 ] - ], - "id" : "022", - "name" : "022" + ] }, { + "id" : "023", + "name" : "023", "data" : [ [ "Perl", @@ -1016,9 +428,7 @@ "Blog", 12 ] - ], - "id" : "023", - "name" : "023" + ] }, { "id" : "024", @@ -1039,6 +449,7 @@ ] }, { + "name" : "025", "data" : [ [ "Perl", @@ -1053,10 +464,10 @@ 12 ] ], - "id" : "025", - "name" : "025" + "id" : "025" }, { + "name" : "026", "data" : [ [ "Perl", @@ -1071,10 +482,11 @@ 10 ] ], - "id" : "026", - "name" : "026" + "id" : "026" }, { + "id" : "027", + "name" : "027", "data" : [ [ "Perl", @@ -1088,11 +500,10 @@ "Blog", 9 ] - ], - "name" : "027", - "id" : "027" + ] }, { + "name" : "028", "data" : [ [ "Perl", @@ -1107,12 +518,10 @@ 9 ] ], - "id" : "028", - "name" : "028" + "id" : "028" }, { "id" : "029", - "name" : "029", "data" : [ [ "Perl", @@ -1126,11 +535,11 @@ "Blog", 12 ] - ] + ], + "name" : "029" }, { "id" : "030", - "name" : "030", "data" : [ [ "Perl", @@ -1144,11 +553,12 @@ "Blog", 10 ] - ] + ], + "name" : "030" }, { - "name" : "031", "id" : "031", + "name" : "031", "data" : [ [ "Perl", @@ -1165,8 +575,6 @@ ] }, { - "name" : "032", - "id" : "032", "data" : [ [ "Perl", @@ -1180,11 +588,13 @@ "Blog", 10 ] - ] + ], + "name" : "032", + "id" : "032" }, { - "name" : "033", "id" : "033", + "name" : "033", "data" : [ [ "Perl", @@ -1201,8 +611,6 @@ ] }, { - "id" : "034", - "name" : "034", "data" : [ [ "Perl", @@ -1216,9 +624,13 @@ "Blog", 11 ] - ] + ], + "name" : "034", + "id" : "034" }, { + "id" : "035", + "name" : "035", "data" : [ [ "Perl", @@ -1232,13 +644,10 @@ "Blog", 9 ] - ], - "id" : "035", - "name" : "035" + ] }, { "name" : "036", - "id" : "036", "data" : [ [ "Perl", @@ -1252,11 +661,10 @@ "Blog", 11 ] - ] + ], + "id" : "036" }, { - "id" : "037", - "name" : "037", "data" : [ [ "Perl", @@ -1270,10 +678,11 @@ "Blog", 9 ] - ] + ], + "name" : "037", + "id" : "037" }, { - "name" : "038", "id" : "038", "data" : [ [ @@ -1288,11 +697,12 @@ "Blog", 12 ] - ] + ], + "name" : "038" }, { - "name" : "039", "id" : "039", + "name" : "039", "data" : [ [ "Perl", @@ -1309,8 +719,6 @@ ] }, { - "id" : "040", - "name" : "040", "data" : [ [ "Perl", @@ -1324,11 +732,11 @@ "Blog", 10 ] - ] + ], + "name" : "040", + "id" : "040" }, { - "id" : "041", - "name" : "041", "data" : [ [ "Perl", @@ -1342,11 +750,13 @@ "Blog", 9 ] - ] + ], + "name" : "041", + "id" : "041" }, { - "name" : "042", "id" : "042", + "name" : "042", "data" : [ [ "Perl", @@ -1363,8 +773,8 @@ ] }, { - "name" : "043", "id" : "043", + "name" : "043", "data" : [ [ "Perl", @@ -1381,8 +791,6 @@ ] }, { - "id" : "044", - "name" : "044", "data" : [ [ "Perl", @@ -1396,7 +804,9 @@ "Blog", 11 ] - ] + ], + "name" : "044", + "id" : "044" }, { "data" : [ @@ -1417,6 +827,8 @@ "id" : "045" }, { + "id" : "046", + "name" : "046", "data" : [ [ "Perl", @@ -1430,9 +842,7 @@ "Blog", 10 ] - ], - "name" : "046", - "id" : "046" + ] }, { "id" : "047", @@ -1472,7 +882,6 @@ }, { "name" : "049", - "id" : "049", "data" : [ [ "Perl", @@ -1486,9 +895,11 @@ "Blog", 12 ] - ] + ], + "id" : "049" }, { + "name" : "050", "data" : [ [ "Perl", @@ -1503,12 +914,9 @@ 12 ] ], - "name" : "050", "id" : "050" }, { - "id" : "051", - "name" : "051", "data" : [ [ "Perl", @@ -1522,9 +930,12 @@ "