Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/SuprDewd/CompetitiveProgramming
/ eq
Function
eq
code/mathematics/intx.test.cpp:3–5 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
1
#include
"fstream"
2
3
bool eq(const intx &a, const intx &b) {
4
return !(a < b) && !(b < a);
5
}
6
7
intx fib(int n) {
8
intx a(0), b(1);
Callers
2
gcd
Function · 0.70
test
Function · 0.70
Calls
no outgoing calls
Tested by
no test coverage detected