View shipping_date_estimation.php
<?php | |
declare(strict_types=1); | |
class ShippingMethod { | |
/** | |
* @var int | |
*/ | |
private $mondayThursday; | |
/** |
View f_biggestPrimeFactor.py
#!/usr/bin/env python3 | |
#limit=600851475143 | |
limit=13195 # works fine as long as u dont have to deal with huge numbers | |
#limit=15 | |
def fb_isPrime(num): | |
checkTill = 1 | |
if num<=1: | |
return False; | |
for i in range(num-1,checkTill,-1): |