Crea una función que recibe una lista de funciones y las ordena en orden ascendente según cuántas llamadas necesitan para devolver algo que no sea una función.
f1 = _ => "hello"
// f1() ➞ "hello"
f2 = _ => _ => "edabit"
// f2()() ➞ "edabit"
f3 = _ => _ => _ => "user"
// f3()()() ➞ "user"
funcSort([f2, f3, f1]) ➞ [f1, f2, f3]
// [f2, f3, f1] ➞ [2, 3, 1] ➞ [1, 2, 3] ➞ [f1, f2, f3]
funcSort([f1, f2, f3]) ➞ [f1, f2, f3]
// [f1, f2, f3] ➞ [1, 2, 3] ➞ [1, 2, 3] ➞ [f1, f2, f3]
funcSort([f2, "func"]) ➞ ["func", f2]
// [f2, "func"] ➞ [2, 0] ➞ [0, 2] ➞ ["func", f2]Numbers, Booleans y Strings, entre otros.