Skip to content

Commit

Permalink
Update 073.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
HaochenLiu committed Oct 18, 2015
1 parent 5b055dd commit 41e363d
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion 073.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
using namespace std;

long long gcd(long long a, long long b) {
if(a == b) return a;
if(a < b) return gcd(b, a);
if(b == 0) return a;
return gcd(b, a % b);
Expand Down

0 comments on commit 41e363d

Please sign in to comment.