diff --git a/reasoning_gym/algorithmic/count_primes.py b/reasoning_gym/algorithmic/count_primes.py index 6317ded5..0a553c7f 100644 --- a/reasoning_gym/algorithmic/count_primes.py +++ b/reasoning_gym/algorithmic/count_primes.py @@ -11,11 +11,7 @@ from typing import Optional from ..factory import ProceduralDataset, register_dataset -QUESTION_TEMPLATE = """Please use python code to count how many prime numbers there are between {start} and {end} (inclusive) ? -Please follow the instruction below: -# 1. Create and run the python code to return the count of the prime numbers. -# 2. Make sure to only report the count of the prime numbers as answer. -""" +QUESTION_TEMPLATE = """Count how many prime numbers there are between {start} and {end} (inclusive) ?""" @dataclass