Files
30-seconds-of-code/snippets/in_range.md
Isabelle Viktoria Maciohsek 19f636408c Make expertise a field
2022-03-01 20:27:27 +02:00

601 B

title, tags, expertise, firstSeen, lastUpdated
title tags expertise firstSeen lastUpdated
Number in range math beginner 2019-08-20T13:41:40+03:00 2020-09-15T16:13:06+03:00

Checks if the given number falls within the given range.

  • Use arithmetic comparison to check if the given number is in the specified range.
  • If the second parameter, end, is not specified, the range is considered to be from 0 to start.
def in_range(n, start, end = 0):
  return start <= n <= end if end >= start else end <= n <= start
in_range(3, 2, 5) # True
in_range(3, 4) # True
in_range(2, 3, 5) # False
in_range(3, 2) # False