同时循环的代码: while ( mydelete $college_info_hr->{'students'}{$student_num}; }具有foreach循环的代码:
foreach my $college_codecollege_data_hr->{$college_code}{'students'}
我有一个数据框,间隔如下: begin end 6 8
9 11 我想要将这对间隔中的每一个值进行比较。如果该值在任何间隔范围内,它将是'yes',否则将是'no‘。 例如:x=3 => yes (因为2 no 目前,我使用嵌套循环遍历每个x的值和每个间隔。但是我有多个x值和多个间隔,所以嵌套循环非常慢。有没有什么方法可以在没有循环的情况下有效地完成这项工作