About Cacher
Web App
Download
Sign In
Sign Up
menu
Cacher is the code snippet organizer for pro developers
We empower you and your team to get more done, faster
Learn More
pitchcontrol
6/9/2018 - 12:25 PM
share
Share
add_circle_outline
Save
gcd
Наибольший общий делитель(Алгоритм Эвклида)
gcd
content_copy
file_download
def gcd(a, b): return gcd(b, a % b) if b else a
clear