PHP method to find numbers that appear only once in an array

黄舟
Release: 2023-03-16 20:20:01
Original
1481 people have browsed it

The example of this article describes the implementation method of PHP searching for numbers that only appear once in the array. Share it with everyone for your reference, the details are as follows:

Question:

In addition to two numbers in an integer array , other numbers appear twice. Please write a program to find these two numbers that only appear once.

The implementation code is as follows:

<?php
function FindNumsAppearOnce($array)
{
  // write code here
  // return list, 比如[a,b],其中ab是出现一次的两个数字
  $count = array_count_values($array);
  foreach($count as $k=>$v) {
    if($v == 1) {
      $new_arr[] = $k;
    }
  }
  return $new_arr;
}
$arr=array(&#39;22&#39;,&#39;44&#39;,&#39;66&#39;,&#39;11&#39;,&#39;11&#39;,&#39;44&#39;,&#39;33&#39;);
print_r(FindNumsAppearOnce($arr));
Copy after login

Output:

Array
(
  [0] => 22
  [1] => 66
  [2] => 33
)
Copy after login

The above is the detailed content of PHP method to find numbers that appear only once in an array. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!