TABLE OF CONTENTS
01. HEADLINES
02. SPONSOR
03. RECAP
04. PERL REVIEW
05. RAKU REVIEW
06. CHART
07. NEW MEMBERS
08. GUESTS
09. TASK #1: First Unique Character
10. TASK #2: Trim List
HEADLINES
Welcome to Week #180
of the weekly challenge.
Today, we are giving away Token #3
to Robert DiCicco
for the book, Learning Perl Exercises by brian d foy
. I will share the details with you in a separate email.
Second consecutive week, I took break from weekly challenge. The end result, I am dropped to rank #16
in the leader board. Luckily less competition in Guest Leader Board
, I am still holding my rank #15
. Hopefully next week, I will try to participate. It has been the most busiest week for me.
Full credit goes to Laurent Rosenfeld
, for holding the rank #1
for the longest period. I don’t see imminent threat to his position. As far as Guest Leader Board
is concerned, Abigail
is by far way ahead of everyone. Although he has taken break for the time being, still his position is quite safe.
TOP 10 Guest Languages
Do you see your favourite language in the Top 10
? If not then why not contribute regularly and make it the top chart.
1. Python (1069)
2. Haskell (487)
3. Ruby (375)
4. Lua (372)
5. C (261)
6. C++ (258)
7. Go (221)
8. Rust (215)
9. Node.js (191)
10. Awk (184)
Packing and labelling of FREE T-shirts
is going on. Hopefully this week, I will have all 40 packs
done and ready to hand over to courier company.
Blogs with Creative Title
1. Ordinal Spark by Arne Sommer.
2. Glitter Bombs and Sparkling Lines by Colin Crain.
3. Spark and Spell by Roger Bell_West.
4. The Ordinal Sparkline by Simon Green.
GitHub Repository Stats
1. Commits: 27,431 (+99)
2. Pull Requests: 6,654 (+23)
3. Contributors: 204
4. Fork: 257
5. Stars: 143
SPONSOR
Our solo sponsor Pete Sergeant
has been a great support to keep us motivated. We are lucky that he agreed to continue the journey with us in the year 2022. I would like to personally thank Pete and his entire team for their generosity. It would be great if we could add few more to sponsor the prize money so that we could go back and declare weekly champions as we have done in the past. I hope and wish this will become possible in 2022. The amount doesn’t have to be huge. However, it would be nice to show off bunch of supporters. If an organisation comes forward and supports us then that would be the ultimate achievement.
RECAP
Quick recap of The Weekly Challenge - 179 by Mohammad S Anwar
.
PERL REVIEW
Please check out Perl solutions review of The Weekly Challenge - 173 by Colin Crain
.
If you missed any past reviews then please check out the collection.
RAKU REVIEW
If you missed any past reviews then please check out the collection.
CHART
Please take a look at the charts showing interesting data.
I would like to THANK
every member of the team for their valuable suggestions. Please do share your experience with us.
NEW MEMBERS
Please find out How to contribute?, if you have any doubts.
Please try the excellent tool EZPWC created by respected member Saif Ahmed
of Team PWC.
GUESTS
Please checkout the guest contributions for the Week #179.
Please find past solutions by respected guests. Please share your creative solutions in other languages.
Task 1: First Unique Character
Submitted by: Mohammad S Anwar
You are given a string, $s
.
Write a script to find out the first unique character in the given string and print its index (0-based).
Example 1
Input: $s = "Perl Weekly Challenge"
Output: 0 as 'P' is the first unique character
Example 2
Input: $s = "Long Live Perl"
Output: 1 as 'o' is the first unique character
Task 2: Trim List
Submitted by: Mohammad S Anwar
You are given list of numbers, @n
and an integer $i
.
Write a script to trim the given list where element is less than or equal to
the given integer.
Example 1
Input: @n = (1,4,2,3,5) and $i = 3
Output: (4,5)
Example 2
Input: @n = (9,0,6,2,3,8,5) and $i = 4
Output: (9,6,8,5)
Last date to submit the solution 23:59 (UK Time) Sunday 4th September 2022.