Restructuring

This commit is contained in:
2024-07-01 13:49:44 +00:00
parent f11b705ef0
commit 8d60e1b905
194 changed files with 1296 additions and 112 deletions
CT.rbcomposer.jsoncomposer.lockct.bat
data/primes
nbproject
phpunit.xmlsettings.yml
solutions
CodeChef/easy
HS08TEST
TEST
CodeGolf/guns-and-zips
Generic
ProjectEuler
src
template.rt
tests
vendor

@ -0,0 +1,12 @@
<?php
for($i=20;true;$i+=20) {
$div = 19;
while(!($i % $div)) {
$div--;
if($div == 0) {
echo $i;
die;
}
}
}