1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
|
#!/usr/bin/env perl
# vim:set ts=4 sw=4 sts=4 et ai wm=0 nu:
#=============================================================================
# Copyright (c) 2024, Bob Lied
#=============================================================================
# ch-2.pl Perl Weekly Challenge 269 Task 2 Distribute Elements
#=============================================================================
# You are given an array of distinct integers, @ints.
# Write a script to distribute the elements as described below:
# 1) Put the 1st element of the given array to a new array @arr1.
# 2) Put the 2nd element of the given array to a new array @arr2.
# Once you have one element in each arrays, @arr1 and @arr2,
# then follow the rule below:
#
# If the last element of the array @arr1 is greater than the last
# element of the array @arr2, then add the first element of the
# given array to @arr1 otherwise to the array @arr2.
#
# When done distribution, return the concatenated arrays. @arr1 and @arr2.
#
# Example 1 Input: @ints = (2, 1, 3, 4, 5)
# Output: (2, 3, 4, 5, 1)
# 1st operation: Add 1 to @arr1 = (2)
# 2nd operation: Add 2 to @arr2 = (1)
# 3rd operation: last element of @arr1 > the last element of @arr2,
# add 3 to @arr1 = (2, 3).
# 4th operation: last element of @arr1 > the last element of @arr2,
# add 4 to @arr1 = (2, 3, 4)
# 5th operation: Finally, the last element of @arr1 is again greater
# than the last element of @arr2, add 5 to @arr1 = (2, 3, 4, 5)
# Mow we have two arrays: @arr1 = (2, 3, 4, 5), @arr2 = (1)
# Concatenate the two arrays and return the final array: (2, 3, 4, 5, 1).
#
# Example 2 Input: @ints = (3, 2, 4)
# Output: (3, 4, 2)
# 1st operation: Add 1 to @arr1 = (3)
# 2nd operation: Add 2 to @arr2 = (2)
# 3rd operation: , add 4 to @arr1 = (3, 4).
# Mow we have two arrays: @arr1 = (3, 4) @arr2 = (2)
# Concatenate the two arrays and return the final array: (3, 4, 2).
#
# Example 3 Input: @ints = (5, 4, 3 ,8)
# Output: (5, 3, 4, 8)
# 1st operation: Add 1 to @arr1 = (5)
# 2nd operation: Add 2 to @arr2 = (4)
# 3rd operation: add 3 to @arr1 = (5, 3).
# 4th operation: add 8 to @arr2 = (4, 8)
# Now we have two arrays: @arr1 = (5, 3) @arr2 = (4, 8)
# Concatenate the two arrays and return the final array: (5, 3, 4, 8).
#=============================================================================
use v5.38;
use builtin qw/true false/; no warnings "experimental::builtin";
use Getopt::Long;
my $Verbose = 0;
my $DoTest = 0;
GetOptions("test" => \$DoTest, "verbose" => \$Verbose);
exit(!runTest()) if $DoTest;
say "(", join(", ", distElem(@ARGV)->@*), ")";
sub distElem(@ints)
{
my @arr = ( [ (shift @ints) // () ], [ (shift @ints) // () ] );
push @{$arr[ ( $arr[0][-1] <= $arr[1][-1] ) ]}, $_ for @ints;
return [ $arr[0]->@*, $arr[1]->@* ];
}
sub runTest
{
use Test2::V0;
is( distElem(2,1,3,4,5), [2,3,4,5,1], "Example 1");
is( distElem(3,2,4 ), [3,4,2] , "Example 2");
is( distElem(5,4,3,8 ), [5,3,4,8] , "Example 3");
is( distElem(5,4 ), [5,4 ] , "Two elements");
is( distElem(5 ), [5 ] , "One element");
is( distElem( ), [ ] , "Zero element");
done_testing;
}
|