gpt4 book ai didi

raku - 如何将数组插入到数组数组中?

转载 作者:行者123 更新时间:2023-12-04 07:31:01 25 4
gpt4 key购买 nike

如何将数组插入到数组数组中?

在 Perl 5 中,我会这样做:

use Data::Dumper;
my @aoa = ( [ 'a', 'A' ], [ 'c', 'C' ] );
splice( @aoa, 1, 0, [ 'b', 'B' ] );
print Dumper \@aoa;

(在 Perl 6 splice 中将替换变平)

最佳答案

my @aoa = ([1,2],[5,6]);
my @arr = 3,4;
splice(@aoa, 1, 0, [@arr,]); # or splice(@aoa, 1, 0, [[3, 4],]);
say @aoa.perl

关于raku - 如何将数组插入到数组数组中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55305481/

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