gpt4 book ai didi

arrays - 非嵌套数组Swift的嵌套数组和ices

转载 作者:行者123 更新时间:2023-11-28 12:16:50 25 4
gpt4 key购买 nike

这是我想自学的东西。我想要嵌套 indexArray 中的一对元素指向 numberArray 中的元素:

IOW:如果 indexArray[[0,2],[3,4]]我希望嵌套元素指向元素 #0#2numberArray以及 numberArray 中的元素 3 和 4

    func findNumIndex(numberArray: [Int], indexArray: [[Int]]) -> Int {
// Use the NESTED index elements to arrive at element index in numberArrray
}

findNumIndex(nums: [0,1,2,3,4,5,6,7,8,9], queries: [[0,1],[1,2],[3,4]])

// We would look at index 0 and 1, index 1 and 2, index 3 and 4 and get the numbers/

起初我考虑过展平阵列,但这不是我想要的。

最佳答案

这似乎可以用一个简单的 map 来完成:

indexArray.map { $0.map { numberArray[$0] } }

关于arrays - 非嵌套数组Swift的嵌套数组和ices,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46225495/

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