Question: write a Python function that takes in a list of integers (elements), and an integer number (num). The functions should count and return number of
write a Python function that takes in a list of integers (elements), and an integer number (num). The functions should count and return number of integers in elements greater than, less than and equal to num.
gt, lt, eq = find_gt_lt_eq(elements = [1, 2, 3, 4, 5], num = 3)
gt should be 2
lt should be 2
eq should be 1
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
