zeroclickinfo-goodies/lib/DDG/Goodie/GoldenRatio.pm

30 lines
672 B
Perl

package DDG::Goodie::GoldenRatio;
use DDG::Goodie;
zci answer_type => "golden_ratio";
zci is_cached => 1;
triggers start => "golden ratio";
handle remainder => sub {
my $input = $_;
my $golden_ratio = (1 + sqrt(5)) / 2;
my $result = 0;
if ($input =~ /^(?:(?:(\?)\s*:\s*(\d+(?:\.\d+)?))|(?:(\d+(?:\.\d+)?)\s*:\s*(\?)))$/) {
if ($1 && $1 eq "?") {
# ? : x
$result = $2 / $golden_ratio;
return "Golden ratio: $result : $2";
} elsif ($4 && $4 eq "?") {
# x : ?
$result = $3 * $golden_ratio;
return "Golden ratio: $3 : $result";
}
}
return;
};
1;