gpt4 book ai didi

arrays - 使用 Perl 检查数据数组中的重复项的最有效方法是什么?

转载 作者:行者123 更新时间:2023-12-03 12:22:52 25 4
gpt4 key购买 nike

我需要查看字符串数组中是否有重复项,最省时的方法是什么?

最佳答案

我喜欢 Perl 的一件事是它几乎可以像英语一样阅读。它只是有点道理。

use strict;
use warnings;

my @array = qw/yes no maybe true false false perhaps no/;

my %seen;

foreach my $string (@array) {

next unless $seen{$string}++;
print "'$string' is duplicated.\n";
}

输出

'false' is duplicated.

'no' is duplicated.

关于arrays - 使用 Perl 检查数据数组中的重复项的最有效方法是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3011888/

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