MCPcopy 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
3bool eq(const intx &a, const intx &b) {
4 return !(a < b) && !(b < a);
5}
6
7intx fib(int n) {
8 intx a(0), b(1);

Callers 2

gcdFunction · 0.70
testFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected