常见的例子 阶乘函数: fact = (a) -> if a > 0 then a * fact(a - 1) else 1 问题的提出 如上,在fact函数中调用了fact本身,无法使用匿名函数表达,如何解决这一问题? 初步的尝试 初始的f: f = (a) -> if a > 0 then a * f(a - 1) else 1 第一步,去除自身的递归调用: f1 = (a) -> if a > 0 then a * f(a - 1) else 1 第二步,f1调用…
How to hire After startups raise money, their next biggest problem becomes hiring. It turns out it’s both really hard and really important to hire good people; in fact, it’s probably the most important thing a founder does. If you don’t hire very we…