Skip to main content
2 of 2
added 149 characters in body
hyper-neutrino
  • 42.5k
  • 5
  • 68
  • 224

Python 3, 28 bytes

lambda x:max(26-x*11,x%12>0)

Try it online!

-4 bytes thanks to ovs

If the boolean output is invalid (in Python, True == 1 and False == 0), add + before the max to turn it into an int.

hyper-neutrino
  • 42.5k
  • 5
  • 68
  • 224