Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl: the Markov chain saw
 
PerlMonks  

Re: greatest common factor

by zeno (Friar)
on Feb 07, 2001 at 16:16 UTC ( [id://56937]=note: print w/replies, xml ) Need Help??


in reply to greatest common factor

Very elegantly done. BTW, there's a typo in the sub multigcf: gcd should be gcf! Otherwise, a very nice offering.
-zeno

sub multigcf { my $x = shift; $x = gcd($x, shift) while @_; #should be gcf! return $x; }

Replies are listed 'Best First'.
Re^2: greatest common factor
by Anonymous Monk on Mar 17, 2017 at 06:23 UTC
    its greatest common divisor , hence gcd

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://56937]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others learning in the Monastery: (6)
As of 2024-04-19 03:08 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found