32 lines
753 B
Perl
32 lines
753 B
Perl
package DDG::Goodie::GoldenRatio;
|
|
# ABSTRACT: find number related to the given number by the Golden Ratio.
|
|
|
|
use strict;
|
|
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;
|