In this post, I am writing the solution for the second task in this week’s challenge in both Raku and C++.
Raku challenge Week 69, issue 2
In this post, I am writing the solution for the second task in this week’s challenge in both Raku and C++.
Science, Programming, Electronics, Languages
In this post, I am writing the solution for the second task in this week’s challenge in both Raku and C++.
In this post, I am writing the solution for the second task in this week’s challenge in both Raku and C++.
The task is to find all so-called strobogrammatic numbers, which are the numbers that look the same if you rotate them upside down.
The task is to find all so-called strobogrammatic numbers, which are the numbers that look the same if you rotate them upside down.
In February 2015, Larry Wall gave a keynote talk at the annual FOSDEM conference in Brussels. That was a talk of historical importance. And that was a talk, whose recording was never published. Fortunately, I have an audio recoding, which I am publishing now on YouTube. This seems to be the only existing recoding today.
In February 2015, Larry Wall gave a keynote talk at the annual FOSDEM conference in Brussels. That was a talk of historical importance. And that was a talk, whose recording was never published. Fortunately, I have an audio recoding, which I am publishing now on YouTube. This seems to be the only existing recoding today.
You are given a matrix of size M x N having only 0s and 1s. Write a script to set the entire row and column to 0 if an element is 0.
You are given a matrix of size M x N having only 0s and 1s. Write a script to set the entire row and column to 0 if an element is 0.
Here is a possible solution of the Task 1 of Week 52 of the Perl Weekly Challenge in the Raku programming language.
Find all stepping numbers between 100 and 999. A number is called a stepping number if the adjacent digits have a difference of 1.
Here is a possible solution of the Task 1 of Week 52 of the Perl Weekly Challenge in the Raku programming language.
Find all stepping numbers between 100 and 999. A number is called a stepping number if the adjacent digits have a difference of 1.
For the given array of integers, rearrange the items so that the shape of the resulting array resembles the wave, that is, the second item is less or equals than the first one, the third item is bigger or equals to the second, then again a smaller number, then a bigger, and so on.
For the given array of integers, rearrange the items so that the shape of the resulting array resembles the wave, that is, the second item is less or equals than the first one, the third item is bigger or equals to the second, then again a smaller number, then a bigger, and so on.
This is a solution of the Task 2 from Week 57 of the Perl Weekly Challenge. Find the shortest unique prefixes for the given list of words.
This is a solution of the Task 2 from Week 57 of the Perl Weekly Challenge. Find the shortest unique prefixes for the given list of words.
1) From the given digits L, combine all possible numbers that are less than Y and that contain exactly X digits. 2) Write a function that from the given string returns the last word that matches the given regex.
1) From the given digits L, combine all possible numbers that are less than Y and that contain exactly X digits. 2) Write a function that from the given string returns the last word that matches the given regex.
Division by zero in Raku is one of my favourite topics. Let me demonstrate a couple of approaches that can be used in solving Task 1 of the Perl Weekly Challenge 31.
The task is to write a function that checks the division by zero without explicitly comparing the denominator with zero.
Division by zero in Raku is one of my favourite topics. Let me demonstrate a couple of approaches that can be used in solving Task 1 of the Perl Weekly Challenge 31.
The task is to write a function that checks the division by zero without explicitly comparing the denominator with zero.
Task 1: List all Christmas days which fall on Sunday in 2019–2100. Task 2: Find all combinations of three numbers, which give 12 in total.
Task 1: List all Christmas days which fall on Sunday in 2019–2100. Task 2: Find all combinations of three numbers, which give 12 in total.
Hello, let us solve the text-processing Task 1 from the Week 26 of the Perl Weekly Challenge. The task is: Take the two words and count all letters in the second word, which are present in the first word.
I have two solutions here, and I believe there is potential to make them shorter.
Hello, let us solve the text-processing Task 1 from the Week 26 of the Perl Weekly Challenge. The task is: Take the two words and count all letters in the second word, which are present in the first word.
I have two solutions here, and I believe there is potential to make them shorter.
This is article about programming. This solves Task 1 of the Perl Weekly Challenge 027. The so-called sexy prime pairs are pairs of prime numbers that differ by 6.
This is article about programming. This solves Task 1 of the Perl Weekly Challenge 027. The so-called sexy prime pairs are pairs of prime numbers that differ by 6.
How to compute the value of the mathematical constant e using recursion in the Raku programming language.
How to compute the value of the mathematical constant e using recursion in the Raku programming language.
Factorial, being a classical task for practising algorithms, is a great example to demonstrate the features of Raku. Let us update the code so that it caches the already calculated values.
Factorial, being a classical task for practising algorithms, is a great example to demonstrate the features of Raku. Let us update the code so that it caches the already calculated values.
Let us implement a simple priority queue in the Raku programming language.
Let us implement a simple priority queue in the Raku programming language.
This is the Task 1 from the Perl Weekly Challenge Week 17. You have to implement the so-called Ackermann function.
This is an interesting function that is defined kind of recursively but actually this is not a recursion, as the recurrent formula is using the function as an argument of itself.
This is the Task 1 from the Perl Weekly Challenge Week 17. You have to implement the so-called Ackermann function.
This is an interesting function that is defined kind of recursively but actually this is not a recursion, as the recurrent formula is using the function as an argument of itself.
Print all Niven number up to 50, which are the numbers which are divisible the the sum of their digits.
Print all Niven number up to 50, which are the numbers which are divisible the the sum of their digits.
Task 1. Generate a list of Regular numbers, which are the numbers, whose prime factors do not exceed 5.
Task 2. Print Pascal triangle with the given number of rows.
Task 1. Generate a list of Regular numbers, which are the numbers, whose prime factors do not exceed 5.
Task 2. Print Pascal triangle with the given number of rows.
Task 1. Remove leading zeros from positive numbers.
Task 2. Convert a number to the one represented as a base-35 number and back.
Task 1. Remove leading zeros from positive numbers.
Task 2. Convert a number to the one represented as a base-35 number and back.
Task 1. Capitalise all small letters ‘e’ and count the number of replacements in the string ‘Perl Weekly Challenge.’
Task 2. Write a one-liner that, for the numbers from 1 to 20, prints ‘fizz’ if the number is divisible by 3 and ‘buzz’ if it is divisible by 5.
Task 1. Capitalise all small letters ‘e’ and count the number of replacements in the string ‘Perl Weekly Challenge.’
Task 2. Write a one-liner that, for the numbers from 1 to 20, prints ‘fizz’ if the number is divisible by 3 and ‘buzz’ if it is divisible by 5.