InterviewSolution
Saved Bookmarks
| 1. |
Write algorithmic function definition to find the minimum among 3 numbers? |
|
Answer» let min 3 x y z : = if x < y then if x < z then x else z else if y < z then y else z |
|