Poprawka złych plików
This commit is contained in:
parent
4481e139c5
commit
693e317962
@ -1,4 +1,4 @@
|
||||
def farenheit(x):
|
||||
def fahrenheit(x):
|
||||
if x< -273.15:
|
||||
return -459.67
|
||||
else:
|
||||
|
@ -1,8 +1,8 @@
|
||||
def is_almost_prime(x, limit):
|
||||
if x <0:
|
||||
if x < 0:
|
||||
return False
|
||||
else:
|
||||
for y in range(2, limit+1):
|
||||
if(x % y == 0):
|
||||
return False
|
||||
reutrn True
|
||||
return True
|
Loading…
Reference in New Issue
Block a user