bigINT icon indicating copy to clipboard operation
bigINT copied to clipboard

Efficient OpenSource Big Integer(Library) Support for C++

Results 24 bigINT issues
Sort by recently updated
recently updated
newest added

#### Description - Implement a Pseudo Random Number Generator (PRNG) for largeInt class that will be able to generate Random Large integers

enhancement
hacktoberfest

#### Description - This function is used to count the leading zeros of the large integer. Note : clz = count leading zero’s - include tests for new implementation

enhancement
good first issue
testing
hacktoberfest

#### Description - a method on the class largeInt which return the count the number of one’s(set bits) in an large integer. - include tests for new implementation

enhancement
good first issue
testing
hacktoberfest

#### Description - This function is used to check the parity of a large int. This function returns true(1) if the number has odd parity else it returns false(0) for...

enhancement
good first issue
testing
hacktoberfest

`sqrt(x)` returns the square root of `largeInt` x also implement tests

enhancement
good first issue
testing
hacktoberfest

implement the following function for largeInt class - max(a, b) returns the maximum of a and b `max()` can have overloads example ``` max(largeInt, largeInt); max(largeInt, int); max(largeInt, int64_t); ```...

enhancement
good first issue
testing
hacktoberfest

min(a, b) returns the minimum of a and b there could be different possible overloads see #21 and implement the corrosponding min() overloads

enhancement
good first issue
testing
hacktoberfest

`pow(a, b)` returns ab implement the possible overloads of `pow()`

enhancement
good first issue
testing
hacktoberfest

Returns false if numbers are equal else returns true. Please assign this to me.

good first issue
testing
hacktoberfest