Skip to content

Add goldbach_conjecture.py implementing Goldbach’s Conjecture #13643

Add goldbach_conjecture.py implementing Goldbach’s Conjecture

Add goldbach_conjecture.py implementing Goldbach’s Conjecture #13643

Triggered via pull request July 14, 2025 13:50
Status Failure
Total duration 16s
Artifacts

ruff.yml

on: pull_request
Fit to window
Zoom out
Zoom in

Annotations

2 errors
ruff
Process completed with exit code 1.
Ruff (SIM110): maths/goldbach_conjecture.py#L4
maths/goldbach_conjecture.py:4:5: SIM110 Use `return all(n % i != 0 for i in range(2, int(n ** 0.5) + 1))` instead of `for` loop