Skip to content

Commit

Permalink
feat: easy day 8 solution
Browse files Browse the repository at this point in the history
  • Loading branch information
Ayushivam22 committed Apr 8, 2024
1 parent 8d0b683 commit 9423427
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion Easy/Day8/Solution.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ long long BinExpo(long long a, long long b, long long m)
return ((a * (res % m)) % m * (res % m)) % m;
}
else

{
return (res * res) % m;
}
Expand Down

0 comments on commit 9423427

Please sign in to comment.