Skip to content

Instantly share code, notes, and snippets.

@asjadsyed
Last active April 14, 2024 07:26
Show Gist options
  • Save asjadsyed/f869f9d4107fdf75ee59fedd006ddef7 to your computer and use it in GitHub Desktop.
Save asjadsyed/f869f9d4107fdf75ee59fedd006ddef7 to your computer and use it in GitHub Desktop.
Ceiling Division
def ceil_div(n, d): return -(n // -d)
def floor_div(n, d): return n // d
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment