Skip to content

Latest commit

 

History

History
5 lines (5 loc) · 79 Bytes

File metadata and controls

5 lines (5 loc) · 79 Bytes
int gcd ( int a , int b ) {
    return b ? gcd ( b , a % b ) : a ;
}