Skip to content

Instantly share code, notes, and snippets.

@hansgafriedzal
Created July 19, 2023 03:12
Show Gist options
  • Save hansgafriedzal/6c86a12503e9856eec35e2ac86786aa3 to your computer and use it in GitHub Desktop.
Save hansgafriedzal/6c86a12503e9856eec35e2ac86786aa3 to your computer and use it in GitHub Desktop.
function gcd ($a, $b) {
if ($b -gt $a)
{
$a, $b = $b, $a
}
Write-Host ">$a, $b"
if ($b -eq 0)
{
return $a
}
return gcd $b ($a % $b)
}
$gcd = gcd -a 1920 -b 1080
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment