在 Clojure 中,Smalltalk 中的ject:into: 相当于什么?

发布于 2024-10-14 19:41:56 字数 213 浏览 5 评论 0原文

我正在尝试学习 Clojure,但我的突触似乎与 Smalltalk 是硬连接的。

这个函数相当于什么?

[:n :k | (1 to: k) inject: 1 into: [:c :i | c * (n - k + i / i)]]
  • 这是 n, k 的二项式系数 - 也称为“选择”函数,表示 n 个事物采取 k 次的组合数

I'm trying to learn Clojure but my synapses seem to be hard-wired to Smalltalk.

What's the equivalent of this function?

[:n :k | (1 to: k) inject: 1 into: [:c :i | c * (n - k + i / i)]]
  • this is the binomial coefficient for n, k - also known as "choose" function, representing the number of combinations of n things taken k times

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

や三分注定 2024-10-21 19:41:56

clojure 等价于 lst Inject: s into: f(reduce fs lst)

The clojure equivalent of lst inject: s into: f is (reduce f s lst)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文