Median of numbers
The median is the middle element in a sorted list. So, if there are 3 numbers a
, b
, c
, and they are sorted (a ≤ b ≤ c), the median is b
.
Given 3 random numbers, your task is to determine the median.
Input | Output |
---|---|
3 1 4 | 3 |
-4 0 -8 | -4 |
Constraints
Time limit: 2 seconds
Memory limit: 512 MB
Output limit: 1 MB