Skip to content

Instantly share code, notes, and snippets.

@asilchev
Created August 16, 2022 07:54
Show Gist options
  • Save asilchev/d31880c25a9e12baed3cc8822a444b7e to your computer and use it in GitHub Desktop.
Save asilchev/d31880c25a9e12baed3cc8822a444b7e to your computer and use it in GitHub Desktop.
RussianPost workflow
def check(int h) {
if ((h >= 8 && h < 10) || (h >=12 && h < 14) || (h >=15 && h < 18) || (h >= 20 && h < 22)) {
return true;
}
return false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment