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: Invert Bit
10. TASK #2: The Travelling Salesman
HEADLINES
The Week #120
became very special as far as guest contributions are concerned.
We received 92 guest contributions
last week in 33 languages
, thanks to Team PWC.
16 guests
contributed to the Week #120
record best figure.
I would like to mention one relatively new member, Lucas Ransan
who contributed in 4 languages
completely unknown to me before. Last week he introduced another new language Odin
.
Regular contributions reached 100+
mark after the gap of 5 weeks, thanks to 38 members
of Team PWC.
Overall figures for Perl and Raku getting better every week, thanks to the dedications of Team PWC.
Let us share some interesting stats from the GitHub repository.
1. Commits: 18,377 (+271)
2. Pull Requests: 4,488 (+69)
3. Contributors: 169 (+1)
4. Fork: 214
5. Stars: 97 (+1)
Last but not least, I would like to thank each and every member for their support and encouragement.
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 2021. 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 2021. 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 - 120” by Mohammad S Anwar
.
PERL REVIEW
Please check out Perl solutions review of the “The Weekly Challenge - 118” 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 #120.
Please find past solutions by respected guests. Please share your creative solutions in other languages.
TASK #1 › Invert Bit
Submitted by: Mohammad S Anwar
You are given integers 0 <= $m
<= 255 and 1 <= $n
<= 8.
Write a script to invert $n
bit from the end of the binary representation of $m
and print the decimal representation of the new binary number.
Example
Input: $m = 12, $n = 3
Output: 8
Binary representation of $m = 00001100
Invert 3rd bit from the end = 00001000
Decimal equivalent of 00001000 = 8
Input $m = 18, $n = 4
Output: 26
Binary representation of $m = 00010010
Invert 4th bit from the end = 00011010
Decimal equivalent of 00011010 = 26
TASK #2 › The Travelling Salesman
Submitted by: Jorg Sommrey
You are given a NxN matrix containing the distances between N cities.
Write a script to find a round trip of minimum length visiting all N cities exactly once and returning to the start.
Example
Matrix: [0, 5, 2, 7]
[5, 0, 5, 3]
[3, 1, 0, 6]
[4, 5, 4, 0]
Output:
length = 10
tour = (0 2 1 3 0)
BONUS 1: For a given number N, create a random NxN distance matrix and find a solution for this matrix.
BONUS 2: Find a solution for a random matrix of size 15x15 or 20x20
Last date to submit the solution 23:59 (UK Time) Sunday 18th July 2021.