It'll be great to recognize code patterns that could be replaced with min() and max() functions. For example: ` if value < 10: value = 10 ` with `value = max(value, 10)`