Skip to content

Conversation

@showtamu
Copy link

No description provided.


unsigned int Euclidean_gcd_rec(unsigned int x, unsigned int y){
if(x == 0) return y;
return Euclidean_gcd_rec_rec(y % x, x);

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

関数の名前間違えてます.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants