作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我找到了很多关于数组值之间所有可能组合的解决方案,但我需要一些不同的东西,我希望你能支持我。基本上是创建将数组键与 true|false 值组合在一起的所有可能对象,如下所示:
输入:(应该返回一个包含 32 个对象的数组,2exp5,5 个键中的两个可能值)
let properties = ['arm','lens','season','food','size'];
let combinations = [
{"arm": "false","lens": "false","season": "false","food": "false","size": "false"}
{"arm": "false","lens": "false","season": "false","food": "false","size": "true"}
{"arm": "false","lens": "false","season": "false","food": "true","size": "true"}
{"arm": "false","lens": "false","season": "true","food": "true","size": "true"}
{"arm": "false","lens": "true","season": "true","food": "true","size": "true"}
{"arm": "true","lens": "true","season": "true","food": "true","size": "true"}
{"arm": "true","lens": "true","season": "true","food": "false","size": "true"}
{"arm": "true","lens": "true","season": "false","food": "false","size": "true"}
and so on...
]
最佳答案
您可以为每个属性使用带有开和关开关的 2D 矩阵。然后为每个键创建条目并使用 Object.fromEntries()
创建对象
0 0 0 0 0
0 0 0 0 1
0 0 0 1 0
0 0 0 1 1
etc
2 ** keys.length
数组中的对象。因此,使用 Array.from({ 2 ** keys.length })
创建它row.toString(2)
为当前行创建一个二进制数keys.length
长:( "00001"
)["0", "0", "0", "0", "1"]
)[["arm","false"],["lens","false"],["season","false"],["food","false"],["size","false"]]
Object.fromEntries()
从条目数组创建一个对象let keys = ['arm', 'lens', 'season', 'food', 'size'];
function combination(keys) {
return Array.from({ length: 2 ** keys.length }, (_, row) =>
Object.fromEntries(
row.toString(2)
.padStart(keys.length, 0)
.split('')
.map((binary, j) => [keys[j], String(Boolean(+binary))])
)
)
}
console.log(combination(keys))
关于javascript - JS 中的递归挑战将所有可能的数组键组合为 true |错误版本,我附上输入和输出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62114826/
找了好久还是没搞明白 我目前正在使用 prawn gem,我希望能够将 pdf 附加到我的 invoice 中的 email Controller 创建操作。我目前可以通过 http://localh
我有这段 php 代码,我想添加一个 HTML。试图添加 html 在内容之间,但它给了我一个错误。 echo __('Din indkøbskurv er tom. ', 'wpsc') . '
由于某些原因,运行docker attach 后,我无法从Docker容器中分离出来。该文档说使用Ctrl-p, Ctrl-q,但这似乎不起作用。我还尝试了ctrl-q + ctrl-p(组合,而不是
我正在使用 Eclipse IDE 并且想要进行调试。当我尝试单步执行 Java 代码时,收到一条消息“未找到源”。对于以前版本的 Java(如 1.5),我可以下载 src.zip 文件,进入“已安
我是一名优秀的程序员,十分优秀!