the smallest element from three

Solutions on MaxInterview for the smallest element from three by the best coders in the world

showing results for - "the smallest element from three"
Josefina
16 Oct 2017
1int x = min(min(a, b), c);
2int x = min({a, b, c});