Perl Weekly Challenge 228: Sums and Swaps
This post presents my solutions to the Perl Weekly Challenge 228.I keep doing the Perl Weekly Challenge in order to mantain my coding skills in good shape, as well as in order to learn new things, with particular regard to Raku, a language that I love.
This week, I solved the following tasks:
- PWC 228 - Task 1 - Raku
- PWC 228 - Task 2 - Raku
- PWC 228 - Task 1 in PostgreSQL PL/Perl
- PWC 228 - Task 2 in PostgreSQL PL/Perl
- PWC 228 - Task 1 in PostgreSQL PL/PgSQL
- PWC 228 - Task 2 in PostgreSQL PL/PgSQL
Raku Implementations
PWC 228 - Task 1 - Raku Implementation
The first task was about summing only the non-repeated numbers given as input.sub MAIN( *@nums where { @nums.elems == @nums.grep( * ~~ Int ).elems } ) {
my $bag = @nums.Bag;
$bag.keys.grep( { $bag{ $_ } == 1 } ).sum.say;
}
My solution is to classify the input array as a
Bag
, then to grep only those keys that have a value of 1
, and sum those keys.
PWC 228 - Task 2 - Raku Implementation
This task was about doing a kind of bubble sort on an array, removing the smallest one if it is the leftmost, and counting the operations required to empty the array.sub MAIN( *@nums where { @nums.grep( * ~~ Int ).elems == @nums.elems } ) {
my @current = @nums;
my $moves = 0;
while ( @current ) {
my $swap = @current.shift;
@current.push: $swap if $swap > @current.min;
$moves++;
}
$moves.say;
}
Until the
@current
array is empty, I extract the leftmost value in the array by means of a shift
operation. If such value is the current minimum, than nothing else is required (since the element has been already removed from the array), otherwise I need to push
it to the end of the array. In any case, an operation has been performed, so $moves
is increased.
PL/Perl Implementations
PWC 228 - Task 1 - PL/Perl Implementation
Same idea as in the Raku implementation: I do classify the input array, thengrep
to keep only unique keys, and then sum.
CREATE OR REPLACE FUNCTION
pwc228.task1_plperl( int[] )
RETURNS int
AS $CODE$
my ( $array ) = @_;
my $bag = {};
# classify the elements
$bag->{ $_ }++ for ( $array->@* );
my ( @uniques ) = grep( { $bag->{ $_ } == 1 } keys( $bag->%* ) );
my $sum = 0;
$sum += $_ for ( @uniques );
return $sum;
$CODE$
LANGUAGE plperl;
PWC 228 - Task 2 - PL/Perl Implementation
The same idea of the Raku implementation, but a little more verbose since I define amin
inner function to calculate the min value of the given array. Also please note that there is the need to terminate the loop when the min
function returns an undef
value.
CREATE OR REPLACE FUNCTION
pwc228.task2_plperl( int[] )
RETURNS int
AS $CODE$
my ( $array ) = @_;
my $moves = 0;
# a function to find out the min value
my $min = sub {
my $min = undef;
for ( $_[0]->@* ) {
$min = $_ if ( ! $min || $min > $_ );
}
return $min;
};
while ( scalar $array->@* ) {
my ( $swap, $min ) = ( shift( $array->@* ), $min->( $array ) );
$moves++;
last if ! $swap;
last if ! $min;
push $array->@*, $swap if ( $swap > $min );
}
return $moves;
$CODE$
LANGUAGE plperl;
PostgreSQL Implementations
PWC 228 - Task 1 - PL/PgSQL Implementation
This task can be solved with a single SQL query:CREATE OR REPLACE FUNCTION
pwc228.task1_plpgsql( a int[] )
RETURNS int
AS $CODE$
WITH BAG as (
SELECT v
FROM unnest( a ) v
GROUP BY v
HAVING count(*) = 1
)
SELECT sum( v )
FROM bag;
$CODE$
LANGUAGE sql;
The
bag
part of the query materializes the unique set of values that are not repeated, then the other part of the query performs the sum
.
PWC 228 - Task 2 - PL/PgSQL Implementation
The second task can be solved as in the PL/Perl way, but it is importan to note that PostgreSQL does not provide ashift
like array operation.
CREATE OR REPLACE FUNCTION
pwc228.task2_plpgsql( a int[] )
RETURNS int
AS $CODE$
DECLARE
current_min int;
current_swap int;
moves int := 0;
BEGIN
WHILE array_length( a, 1 ) > 1 LOOP
-- find the min value
SELECT min( v )
INTO current_min
FROM unnest( a ) v;
-- unshift the first element
current_swap := a[ 1 ];
a := a[ 2 : array_length( a, 1 ) ];
IF current_swap > current_min THEN
a := array_append( a, current_swap );
END IF;
moves := moves + 1;
END LOOP;
RETURN moves;
END
$CODE$
LANGUAGE plpgsql;
The trick to simulate the
shift
operation is to access an array slice starting from 2
(because in SQL the arrays all start at index 1
).