Skip to content

Instantly share code, notes, and snippets.

@dance2die
Created February 16, 2022 03:36
Show Gist options
  • Save dance2die/a64d8ca47c9a664bd36a41f567700ad2 to your computer and use it in GitHub Desktop.
Save dance2die/a64d8ca47c9a664bd36a41f567700ad2 to your computer and use it in GitHub Desktop.
Clean Coding Practice - Self Note to track my thoughts.
  1. Compare numbers in a sequence. e.g.
# ok
3 > 2 > 1
1 < 2 < 3
# not
1 < 3 > 2
# not
2 > 1 and 1 < 3
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment