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
|
#!/usr/local/bin/perl
use strict;
use warnings;
use feature qw(say);
use Test::More;
use Benchmark qw(cmpthese timethis);
use Data::Dumper qw(Dumper);
my @TESTS = (
[ 5, 1 ],
[ 4, 0 ],
[ 9, 1 ],
[ 90, 0 ],
[ 45, 1 ],
[ 15, 1 ],
[ 31, 1 ],
[ 63, 1 ],
[ 127, 1 ],
[ 255, 1 ],
[ 129, 1 ],
[ 65, 1 ],
[ 247, 0 ],
[ 200,0],
[ 500,0],
[ 100,0],
[ 400,0],
[ 300,0],
);
is( is_binary_palindrome($_->[0]), $_->[1] ) foreach @TESTS;
is( is_binary_palindrome_string($_->[0]), $_->[1] ) foreach @TESTS;
cmpthese( 100_000, {
'array' => sub { is_binary_palindrome($_->[0]) foreach @TESTS },
'string' => sub { is_binary_palindrome_string($_->[0]) foreach @TESTS },
} );
done_testing();
sub is_binary_palindrome_string {
## This is the core perl solution convert to binary using sprintf
## [this is faster than unpack and doesn't have issue with leading 0s!]
## and compare with reverse...
return ( ( $a = sprintf '%b', $_[0] ) eq reverse $a ) || 0;
}
sub is_binary_palindrome {
## Can we write an array based one which is faster! Answer NO!
## We work from both ends to see if the numbers are different
## if they are return 0
## o/w we get to the end and return 1
my @n = split m{}, sprintf '%b', shift;
(pop @n eq shift @n) || return 0 while @n > 1;
return 1;
}
|