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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
|
#!perl
################################################################################
=comment
Perl Weekly Challenge 333
=========================
TASK #1
-------
*Straight Line*
Submitted by: Mohammad Sajid Anwar
You are given a list of co-ordinates.
Write a script to find out if the given points make a straight line.
Example 1
Input: @list = ([2, 1], [2, 3], [2, 5])
Output: true
Example 2
Input: @list = ([1, 4], [3, 4], [10, 4])
Output: true
Example 3
Input: @list = ([0, 0], [1, 1], [2, 3])
Output: false
Example 4
Input: @list = ([1, 1], [1, 1], [1, 1])
Output: true
Example 5
Input: @list = ([1000000, 1000000], [2000000, 2000000], [3000000, 3000000])
Output: true
=cut
################################################################################
#--------------------------------------#
# Copyright © 2025 PerlMonk Athanasius #
#--------------------------------------#
#===============================================================================
=comment
Interface
---------
1. If no command-line arguments are given, the test suite is run. Otherwise:
2. A non-empty list of coordinate strings is entered on the command-line.
3. If the first coordinate string begins with a hyphen (because the x-coordin-
ate is negative), it must be preceded by "--" to indicate that it is not a
command-line flag.
Assumptions
-----------
1. The coordinates represent points on the Cartesian plane; therefore, coordin-
ate values are real numbers.
2. Degenerate cases: if there are only 1 or 2 (distinct) coordinates, they are
deemed to be collinear.
Note
----
This script handles real number co-ordinate values using Perl's built-in float-
ing-point arithmetic. For this reason, equality comparison cannot be performed
reliably using the "==" operator; instead, an equal_values() subroutine is pro-
vided. If the absolute difference between the values to be compared is less than
a given $EPSILON, then the values are considered equal.
=cut
#===============================================================================
use v5.32; # Enables strictures
use warnings;
use Const::Fast;
use Regexp::Common qw( number );
use Test::More;
const my $EPSILON => 1e-10;
const my $USAGE => <<END;
Usage:
perl $0 [<list> ...]
perl $0
[<list> ...] A non-empty list of co-ordinate strings (e.g., "1 2" "3 4")
END
#-------------------------------------------------------------------------------
BEGIN
#-------------------------------------------------------------------------------
{
$| = 1;
print "\nChallenge 333, Task #1: Straight Line (Perl)\n\n";
}
#===============================================================================
MAIN:
#===============================================================================
{
if (scalar @ARGV == 0)
{
run_tests();
}
else
{
my @list = @ARGV;
my $coords = get_coords( \@list );
printf "Input: \@list = (%s)\n",
join ', ', map { '[' . join( ', ', @$_ ) . ']' } @$coords;
my $collinear = are_collinear( $coords );
printf "Output: %s\n", $collinear ? 'true' : 'false';
}
}
#-------------------------------------------------------------------------------
sub are_collinear
#-------------------------------------------------------------------------------
{
my ($list) = @_;
my $coords = remove_duplicates( $list );
if (scalar @$coords > 2)
{
my $x0 = $coords->[ 0 ][ 0 ];
my $y0 = $coords->[ 0 ][ 1 ];
my $x1 = $coords->[ 1 ][ 0 ];
my $y1 = $coords->[ 1 ][ 1 ];
my $m0 = equal_values( $x0, $x1 ) ? undef : ($y1 - $y0) / ($x1 - $x0);
for my $i (2 .. $#$coords)
{
my $xi = $coords->[ $i ][ 0 ];
my $yi = $coords->[ $i ][ 1 ];
my $lhs = $xi; # Assume the line is vertical
my $rhs = $x0;
if (defined $m0) # It's not
{
$lhs = ($yi - $y0) / ($xi - $x0);
$rhs = $m0;
}
return '' unless equal_values( $lhs, $rhs );
}
}
return 1;
}
#-------------------------------------------------------------------------------
sub remove_duplicates
#-------------------------------------------------------------------------------
{
my ($list) = @_;
my @unique;
for my $coord (@$list)
{
my $found = '';
for my $uniq (@unique)
{
if (equal_coords( $uniq, $coord ))
{
$found = 1;
last;
}
}
push @unique, $coord unless $found;
}
return \@unique;
}
#-------------------------------------------------------------------------------
sub equal_coords
#-------------------------------------------------------------------------------
{
my ($p, $q) = @_;
return equal_values( $p->[ 0 ], $q->[ 0 ] ) &&
equal_values( $p->[ 1 ], $q->[ 1 ] );
}
#-------------------------------------------------------------------------------
sub equal_values
#-------------------------------------------------------------------------------
{
my ($x, $y) = @_;
return abs( $x - $y ) < $EPSILON;
}
#-------------------------------------------------------------------------------
sub get_coords
#-------------------------------------------------------------------------------
{
my ($list) = @_;
my @coords;
for my $str (@$list)
{
my @pair = grep { / \S /x } split / \s+ /x, $str;
scalar @pair == 2 or error( qq[Invalid coordinate string "$str"] );
for (@pair)
{
/ ^ $RE{num}{real} $ /x
or error( qq["$_" is not a valid coordinate value] );
}
push @coords, [ map { $_ + 0 } @pair ]; # Normalize the coord values
}
return \@coords;
}
#-------------------------------------------------------------------------------
sub run_tests
#-------------------------------------------------------------------------------
{
print "Running the test suite\n";
while (my $line = <DATA>)
{
chomp $line;
my ($test_name, $coord_str, $expected) = split / \| /x, $line;
for ($test_name, $coord_str, $expected)
{
s/ ^ \s+ //x;
s/ \s+ $ //x;
}
my @list = split / ; /x, $coord_str;
my $coords = get_coords( \@list );
my $collinear = are_collinear( $coords ) ? 'true' : 'false';
is $collinear, $expected, $test_name;
}
done_testing;
}
#-------------------------------------------------------------------------------
sub error
#-------------------------------------------------------------------------------
{
my ($message) = @_;
die "ERROR: $message\n$USAGE";
}
################################################################################
__DATA__
Example 1 | 2 1; 2 3; 2 5 |true
Example 2 | 1 4; 3 4; 10 4 |true
Example 3 | 0 0; 1 1; 2 3 |false
Example 4 | 1 1; 1 1; 1 1 |true
Example 5 |1000000 1000000; 2000000 2000000; 3000000 3000000|true
Duplicate 1| 1 2; 1 2; 2 3; 3 4 |true
Duplicate 2| 1 2; 1 2; 2 3; 3 5 |false
Duplicate 3| 1 2; 1 2; 2 3; 1 2 |true
Singleton | 4 9 |true
Pair | 4 9; 7 6 |true
Reals |-1.5 0.3; -2.5 -0.7; -3.5 -1.7 |true
|