|
|
|
|
|
by andoando
371 days ago
|
|
I mean its not that bad. You just go right to left. 1/2 applied to x^ so x^(0.5), _ is floor so floor of x^0.5. ! creates an array of numbers up until floor of x^0.5. 2+ just adds 2 to every number, and then I lost interest in learning the rest lol. Yeah I like the python equivalent
def is_prime(x):
return x > 1 and all(x % i != 0 for i in range(2, x)) |
|
Not at a computer now, can't check.