Skip to content

Commit

Permalink
feat: day8 solution easy
Browse files Browse the repository at this point in the history
  • Loading branch information
Ayushivam22 committed Apr 8, 2024
1 parent b53c9a5 commit 8d0b683
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions Easy/Day8/Solution.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ 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 8d0b683

Please sign in to comment.