Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/anthhon/prime-breaker

A simple and efficient way to find two prime numbers that multiply to a given
https://github.com/anthhon/prime-breaker

Last synced: about 2 months ago
JSON representation

A simple and efficient way to find two prime numbers that multiply to a given

Awesome Lists containing this project

README

        

# prime-breaker

Overall, this program is a simple and efficient way to find two prime numbers that multiply to a given one

This C program is designed to find two prime numbers that multiply to a target prime number.
The program uses an efficient prime number checking algorithm based on the Sieve of Eratosthenes to quickly determine
if a number is prime or not. The program also includes a timer to measure how long it takes to find the two prime numbers.