https://github.com/cloudsteak/chatgpt-codex
https://github.com/cloudsteak/chatgpt-codex
Last synced: 10 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/cloudsteak/chatgpt-codex
- Owner: cloudsteak
- License: mit
- Created: 2025-07-18T20:25:11.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2025-07-18T20:55:58.000Z (11 months ago)
- Last Synced: 2025-07-19T01:29:59.824Z (11 months ago)
- Language: Python
- Size: 5.86 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ChatGPT Codex
This repository contains a small utility for working with prime numbers.
## Usage
Import the `is_prime` function from `prime_utils` and call it with an integer:
```python
from prime_utils import is_prime
print(is_prime(17)) # True
```