MinMax

Identify smallest and largest numbers in dataset.

Link

Room Link


Process


I ain’t affraid of ghosts. Big or small. Here we go with MinMax.

Launch the programming interface.


Develop the code to find the max and min.

python
# take in the number
n = list(map(float,input().split()))

# calculate answer

# print answer
print(min(n))
print(max(n))
python
# take in the number
n = list(map(float,input().split()))

# calculate answer

# print answer
print(min(n))
print(max(n))


Run the code and get the flag.