Skip to content

SutirthaMukherjee97/Number_Theory

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 

Repository files navigation

Number_Theory

//C++CP code_for_Number_Theory

// GCD of two numbers ll int GCD(ll int a,ll int b) { if(b==0) { return a; } else { return GCD(b,a%b); } }

About

C++_CP_ code_for_Number_Theory

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published