Data update

This commit is contained in:
Ingy döt Net 2026-04-30 12:34:36 -04:00
parent 4bb20c9b71
commit cbaf4c4b64
12390 changed files with 318560 additions and 27248 deletions

View file

@ -0,0 +1,13 @@
# Department numbers
Write-Output "POLICE SANITATION FIRE"
for ($p = 2; $p -le 7; $p += 2) {
for ($s = 1; $s -le 7; $s++) {
if ($s -ne $p) {
$f = 12 - $p - $s
if (($f -ne $s) -and ($f -ne $p) -and ($f -ge 1) -and ($f -le 7)) {
Write-Output " $p $s $f"
}
}
}
}