+ 2
Prime que
can anybody know the program to print prime no. between a given range and also only whose reverse is also prime ex. 17
5 ответов
+ 6
The you filter the list using:
if a is prime and int(reverse(str(a))) is prime
+ 5
Use the Sieve of Erathnostenes.
C++ this:
https://code.sololearn.com/cCG0NiHxo8l3/?ref=app
+ 5
Oh.
+ 2
but reverse is a condition in this que
+ 1
ya. i will try