Define a function altMap $::(\mathrm{a} \rightarrow \mathrm{b}) \rightarrow(\mathrm{a} \rightarrow \mathrm{b})$
$\rightarrow[a]-[b]$ that alternately applies its two argument functions to successive elements in a list, in turn about order. For example:
$$
\begin{aligned}
& >\text { altmap }(+10)(+100) \quad[0,1,2,3,4] \\
& {[10,101,12,103,14]}
\end{aligned}
$$