Hello everyone. I am implementing a function that checks if 2 integers are relatively prime. I am putting this code in the commons_numbers_primes project. The problem is that my algorithm uses greatest common divisor. Instead of reimplementing myself, I thought that I should reuse ArithmeticUtils::gcd, but the commons_numbers_primes project does not import the commons_numbers_core project. What should I do?
Thank you