gpt4 book ai didi

javascript - Ramda - 按索引分区

转载 作者:行者123 更新时间:2023-11-29 10:02:56 26 4
gpt4 key购买 nike

如何使用 RamdaJS 通过 index 实现 partition

/*
* @param {number} index
* @param {[]} list

* @returns {[found, rest[]]} - array whose index 0 has the found element
* * and index 1 has the rest of the given list
*/
const partitionByIndex = (index, list) => {};

// this is what I got so far, but I really think it is too verbose

export const partitionByIndex = R.curry((i, cards) => R.pipe(
R.partition(R.equals(R.nth(i, cards))),
([found, rest]) => [R.head(found), rest],
)(cards));

const list = [1, 2, 3, 4, 5, 6, 7];
const index = 1;

const [found, rest] = partitionByIndex(index, list);

console.log({ found, rest });
<script src="https://cdnjs.cloudflare.com/ajax/libs/ramda/0.25.0/ramda.js"></script>

最佳答案

一个相当简单的无点解决方案是

const partitionByIndex = converge(pair, [compose(of, nth), flip(remove)(1)])

partitionByIndex(2, ['a', 'b', 'c', 'd', 'e']) //=> [['c'], ['a', 'b', 'd', 'e']]

flip 让我意识到 remove 的参数可能顺序错误。

更新

Yogi 指出期望的响应可能是 ['c', ['a', 'b', 'd', 'e']] 而不是上面的结果:[['c'], ['a', 'b', 'd', 'e']]。如果是这样的话,这段代码可以变得更简单:

const partitionByIndex = converge(pair, [nth, flip(remove)(1)])

partitionByIndex(2, ['a', 'b', 'c', 'd', 'e']) //=> ['c', ['a', 'b', 'd', 'e']]

关于javascript - Ramda - 按索引分区,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51398136/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com