Find The One Element In An Array That is Different From The OthersSearching an element in a sorted arrayFind the second-largest number in an array of elementsFind the first unique character in a stringHackerrank Insertion Sort Part 2Function to find the shortest word in an array, where not every element is a stringFilter array elements using variable number of filtersArray Duplicate Item Filtering by Element ValueFind a number which equals to the total number of integers greater than itself in an arrayJavaScript Spiral Matrix Coding ChallengeGood Vs. Evil - Battle For Middle Earth - CodeWars

LED glows slightly during soldering

Is there a strong legal guarantee that the U.S. can give to another country that it won't attack them?

Does Multiverse exist in MCU?

Why are they 'nude photos'?

The tensor product of two monoidal categories

Can the Mage Hand cantrip be used to trip an enemy who is running away?

Fivenum and a little bit

OR-backed serious games

Is a request to book a business flight ticket for a graduate student an unreasonable one?

Has anyone in space seen or photographed a simple laser pointer from Earth?

Integer Lists of Noah

Why do people keep referring to Leia as Princess Leia, even after the destruction of Alderaan?

Print the last, middle and first character of your code

When an electron changes its spin, or any other intrinsic property, is it still the same electron?

Great Unsolved Problems in O.R

Why was hardware diversification an asset for the IBM PC ecosystem?

Terry Pratchett book with a lawyer dragon and sheep

Confirming the Identity of a (Friendly) Reviewer After the Reviews

Does throwing a penny at a train stop the train?

Optimization terminology: "Exact" v. "Approximate"

How do you move up one folder in Finder?

Is Trump personally blocking people on Twitter?

Why is the air gap between the stator and rotor on a motor kept as small as it is?

Difference between scale and grid in QGIS?



Find The One Element In An Array That is Different From The Others


Searching an element in a sorted arrayFind the second-largest number in an array of elementsFind the first unique character in a stringHackerrank Insertion Sort Part 2Function to find the shortest word in an array, where not every element is a stringFilter array elements using variable number of filtersArray Duplicate Item Filtering by Element ValueFind a number which equals to the total number of integers greater than itself in an arrayJavaScript Spiral Matrix Coding ChallengeGood Vs. Evil - Battle For Middle Earth - CodeWars






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








1












$begingroup$


https://www.codewars.com/kata/find-the-stray-number/train/javascript



I solved this challenge by sorting from least to greatest, and checking if the first element in the array matched the second element in the array.



If the first element does not match, then the different element is the first element.



If the first element does match, then the different element is the last element.



function stray(numbers) 
numbers = numbers.sort((a, b) => a - b);
if (numbers[0] !== numbers[1])
return numbers[0];

else
return numbers[numbers.length - 1];


console.log([17, 17, 3, 17, 17, 17, 17]);


I'm wondering if / how this can be done with the filter() method instead?










share|improve this question











$endgroup$


















    1












    $begingroup$


    https://www.codewars.com/kata/find-the-stray-number/train/javascript



    I solved this challenge by sorting from least to greatest, and checking if the first element in the array matched the second element in the array.



    If the first element does not match, then the different element is the first element.



    If the first element does match, then the different element is the last element.



    function stray(numbers) 
    numbers = numbers.sort((a, b) => a - b);
    if (numbers[0] !== numbers[1])
    return numbers[0];

    else
    return numbers[numbers.length - 1];


    console.log([17, 17, 3, 17, 17, 17, 17]);


    I'm wondering if / how this can be done with the filter() method instead?










    share|improve this question











    $endgroup$














      1












      1








      1





      $begingroup$


      https://www.codewars.com/kata/find-the-stray-number/train/javascript



      I solved this challenge by sorting from least to greatest, and checking if the first element in the array matched the second element in the array.



      If the first element does not match, then the different element is the first element.



      If the first element does match, then the different element is the last element.



      function stray(numbers) 
      numbers = numbers.sort((a, b) => a - b);
      if (numbers[0] !== numbers[1])
      return numbers[0];

      else
      return numbers[numbers.length - 1];


      console.log([17, 17, 3, 17, 17, 17, 17]);


      I'm wondering if / how this can be done with the filter() method instead?










      share|improve this question











      $endgroup$




      https://www.codewars.com/kata/find-the-stray-number/train/javascript



      I solved this challenge by sorting from least to greatest, and checking if the first element in the array matched the second element in the array.



      If the first element does not match, then the different element is the first element.



      If the first element does match, then the different element is the last element.



      function stray(numbers) 
      numbers = numbers.sort((a, b) => a - b);
      if (numbers[0] !== numbers[1])
      return numbers[0];

      else
      return numbers[numbers.length - 1];


      console.log([17, 17, 3, 17, 17, 17, 17]);


      I'm wondering if / how this can be done with the filter() method instead?







      javascript programming-challenge array






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited 8 hours ago









      Heretic Monkey

      2452 silver badges7 bronze badges




      2452 silver badges7 bronze badges










      asked 13 hours ago









      HappyHands31HappyHands31

      1164 bronze badges




      1164 bronze badges




















          3 Answers
          3






          active

          oldest

          votes


















          2












          $begingroup$

          You could use the filter method, but I'm not convinced it makes the code any more efficient or readable:






          function stray(numbers) 
          return numbers.find(i => numbers.filter(j => j === i).length === 1);

          console.log(stray([17, 17, 3, 17, 17, 17, 17]));
          console.log(stray([17, 17, 23, 17, 17, 17, 17]));





          I've added an example where the "stray" number is greater than the others as a sanity check.



          find is a bit like filter except that it returns the first element in the array that causes the function to return true.



          filter here is used to find the number which is only found in the array once.




          Your original code could be shortened by using a conditional operator, along with the slice function (which shortens the code necessary to get the first/last element a little):






          function stray(numbers) 
          numbers = numbers.sort((a, b) => a - b);
          return numbers.slice((numbers[0] !== numbers[1] ? 0 : -1))[0];

          console.log(stray([17, 17, 3, 17, 17, 17, 17]));
          console.log(stray([17, 17, 23, 17, 17, 17, 17]));








          share|improve this answer









          $endgroup$




















            2












            $begingroup$

            Here is how you could implement it with the filter() method:






            const stray = numbers => +numbers.sort((a, b) => a - b)
            .filter((n,i,a) => (i === 0 && a[0] !==a[1]) || (i === a.length-1 && a[a.length-1] !== a[a.length-2]));

            console.log(stray([17, 17, 3, 17, 17, 17, 17]));
            console.log(stray([2, 2, 2, 2, 2, 14, 2, 2, 2, 2]));





            Or in more a clean way:






            const stray = numbers => numbers.sort((a, b) => a - b)
            .filter(n => n === numbers[0]).length === 1 ? numbers[0] : numbers[numbers.length-1]

            console.log(stray([17, 17, 3, 17, 17, 17, 17]));
            console.log(stray([2, 2, 2, 2, 2, 14, 2, 2, 2, 2]));





            But as Heretic Monkey said, this is probably not the best approach...






            share|improve this answer










            New contributor



            Shaye Ulman is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
            Check out our Code of Conduct.





            $endgroup$




















              2












              $begingroup$

              This is a similar idea to the other answers here, but the implementation is a bit different.



              First of all, we can assume that the array's length is at least 3, since it needs to have at least two of the same values and one different value.



              Let's start by handling the case where the stray value is not in the first element. We could simply write:



              a.find(v => v != a[0])


              That is, find an element that's different from the first element. But what if the stray element comes first in the array? We can check if the first two elements differ. If they do, then the stray is either in the first or second position, so the third element is not a stray. In this case, we can check against the third element instead of the first; otherwise we check against the first element as before, thus:



              a.find(v => a[0] != a[1] ? v != a[2] : v != a[0])


              This is a bit code-golfey and not very readable, so I wouldn't recommend it in production, but it may be of some interest as a curiosity.



              It may be worth noting that this solution appears to perform quite well, and can be further optimized by doing the inequality check on the first two elements before invoking find, and by using the third parameter to find to access the array, making the callback a pure function and eliminating the need to reference the array via the closed-over variable, for example:



              a.find(a[0] != a[1] ?
              (v, i, a) => v != a[2] :
              (v, i, a) => v != a[0])





              share|improve this answer










              New contributor



              user11536834 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
              Check out our Code of Conduct.





              $endgroup$















                Your Answer






                StackExchange.ifUsing("editor", function ()
                StackExchange.using("externalEditor", function ()
                StackExchange.using("snippets", function ()
                StackExchange.snippets.init();
                );
                );
                , "code-snippets");

                StackExchange.ready(function()
                var channelOptions =
                tags: "".split(" "),
                id: "196"
                ;
                initTagRenderer("".split(" "), "".split(" "), channelOptions);

                StackExchange.using("externalEditor", function()
                // Have to fire editor after snippets, if snippets enabled
                if (StackExchange.settings.snippets.snippetsEnabled)
                StackExchange.using("snippets", function()
                createEditor();
                );

                else
                createEditor();

                );

                function createEditor()
                StackExchange.prepareEditor(
                heartbeatType: 'answer',
                autoActivateHeartbeat: false,
                convertImagesToLinks: false,
                noModals: true,
                showLowRepImageUploadWarning: true,
                reputationToPostImages: null,
                bindNavPrevention: true,
                postfix: "",
                imageUploader:
                brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
                contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
                allowUrls: true
                ,
                onDemand: true,
                discardSelector: ".discard-answer"
                ,immediatelyShowMarkdownHelp:true
                );



                );













                draft saved

                draft discarded


















                StackExchange.ready(
                function ()
                StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fcodereview.stackexchange.com%2fquestions%2f223821%2ffind-the-one-element-in-an-array-that-is-different-from-the-others%23new-answer', 'question_page');

                );

                Post as a guest















                Required, but never shown

























                3 Answers
                3






                active

                oldest

                votes








                3 Answers
                3






                active

                oldest

                votes









                active

                oldest

                votes






                active

                oldest

                votes









                2












                $begingroup$

                You could use the filter method, but I'm not convinced it makes the code any more efficient or readable:






                function stray(numbers) 
                return numbers.find(i => numbers.filter(j => j === i).length === 1);

                console.log(stray([17, 17, 3, 17, 17, 17, 17]));
                console.log(stray([17, 17, 23, 17, 17, 17, 17]));





                I've added an example where the "stray" number is greater than the others as a sanity check.



                find is a bit like filter except that it returns the first element in the array that causes the function to return true.



                filter here is used to find the number which is only found in the array once.




                Your original code could be shortened by using a conditional operator, along with the slice function (which shortens the code necessary to get the first/last element a little):






                function stray(numbers) 
                numbers = numbers.sort((a, b) => a - b);
                return numbers.slice((numbers[0] !== numbers[1] ? 0 : -1))[0];

                console.log(stray([17, 17, 3, 17, 17, 17, 17]));
                console.log(stray([17, 17, 23, 17, 17, 17, 17]));








                share|improve this answer









                $endgroup$

















                  2












                  $begingroup$

                  You could use the filter method, but I'm not convinced it makes the code any more efficient or readable:






                  function stray(numbers) 
                  return numbers.find(i => numbers.filter(j => j === i).length === 1);

                  console.log(stray([17, 17, 3, 17, 17, 17, 17]));
                  console.log(stray([17, 17, 23, 17, 17, 17, 17]));





                  I've added an example where the "stray" number is greater than the others as a sanity check.



                  find is a bit like filter except that it returns the first element in the array that causes the function to return true.



                  filter here is used to find the number which is only found in the array once.




                  Your original code could be shortened by using a conditional operator, along with the slice function (which shortens the code necessary to get the first/last element a little):






                  function stray(numbers) 
                  numbers = numbers.sort((a, b) => a - b);
                  return numbers.slice((numbers[0] !== numbers[1] ? 0 : -1))[0];

                  console.log(stray([17, 17, 3, 17, 17, 17, 17]));
                  console.log(stray([17, 17, 23, 17, 17, 17, 17]));








                  share|improve this answer









                  $endgroup$















                    2












                    2








                    2





                    $begingroup$

                    You could use the filter method, but I'm not convinced it makes the code any more efficient or readable:






                    function stray(numbers) 
                    return numbers.find(i => numbers.filter(j => j === i).length === 1);

                    console.log(stray([17, 17, 3, 17, 17, 17, 17]));
                    console.log(stray([17, 17, 23, 17, 17, 17, 17]));





                    I've added an example where the "stray" number is greater than the others as a sanity check.



                    find is a bit like filter except that it returns the first element in the array that causes the function to return true.



                    filter here is used to find the number which is only found in the array once.




                    Your original code could be shortened by using a conditional operator, along with the slice function (which shortens the code necessary to get the first/last element a little):






                    function stray(numbers) 
                    numbers = numbers.sort((a, b) => a - b);
                    return numbers.slice((numbers[0] !== numbers[1] ? 0 : -1))[0];

                    console.log(stray([17, 17, 3, 17, 17, 17, 17]));
                    console.log(stray([17, 17, 23, 17, 17, 17, 17]));








                    share|improve this answer









                    $endgroup$



                    You could use the filter method, but I'm not convinced it makes the code any more efficient or readable:






                    function stray(numbers) 
                    return numbers.find(i => numbers.filter(j => j === i).length === 1);

                    console.log(stray([17, 17, 3, 17, 17, 17, 17]));
                    console.log(stray([17, 17, 23, 17, 17, 17, 17]));





                    I've added an example where the "stray" number is greater than the others as a sanity check.



                    find is a bit like filter except that it returns the first element in the array that causes the function to return true.



                    filter here is used to find the number which is only found in the array once.




                    Your original code could be shortened by using a conditional operator, along with the slice function (which shortens the code necessary to get the first/last element a little):






                    function stray(numbers) 
                    numbers = numbers.sort((a, b) => a - b);
                    return numbers.slice((numbers[0] !== numbers[1] ? 0 : -1))[0];

                    console.log(stray([17, 17, 3, 17, 17, 17, 17]));
                    console.log(stray([17, 17, 23, 17, 17, 17, 17]));








                    function stray(numbers) 
                    return numbers.find(i => numbers.filter(j => j === i).length === 1);

                    console.log(stray([17, 17, 3, 17, 17, 17, 17]));
                    console.log(stray([17, 17, 23, 17, 17, 17, 17]));





                    function stray(numbers) 
                    return numbers.find(i => numbers.filter(j => j === i).length === 1);

                    console.log(stray([17, 17, 3, 17, 17, 17, 17]));
                    console.log(stray([17, 17, 23, 17, 17, 17, 17]));





                    function stray(numbers) 
                    numbers = numbers.sort((a, b) => a - b);
                    return numbers.slice((numbers[0] !== numbers[1] ? 0 : -1))[0];

                    console.log(stray([17, 17, 3, 17, 17, 17, 17]));
                    console.log(stray([17, 17, 23, 17, 17, 17, 17]));





                    function stray(numbers) 
                    numbers = numbers.sort((a, b) => a - b);
                    return numbers.slice((numbers[0] !== numbers[1] ? 0 : -1))[0];

                    console.log(stray([17, 17, 3, 17, 17, 17, 17]));
                    console.log(stray([17, 17, 23, 17, 17, 17, 17]));






                    share|improve this answer












                    share|improve this answer



                    share|improve this answer










                    answered 9 hours ago









                    Heretic MonkeyHeretic Monkey

                    2452 silver badges7 bronze badges




                    2452 silver badges7 bronze badges























                        2












                        $begingroup$

                        Here is how you could implement it with the filter() method:






                        const stray = numbers => +numbers.sort((a, b) => a - b)
                        .filter((n,i,a) => (i === 0 && a[0] !==a[1]) || (i === a.length-1 && a[a.length-1] !== a[a.length-2]));

                        console.log(stray([17, 17, 3, 17, 17, 17, 17]));
                        console.log(stray([2, 2, 2, 2, 2, 14, 2, 2, 2, 2]));





                        Or in more a clean way:






                        const stray = numbers => numbers.sort((a, b) => a - b)
                        .filter(n => n === numbers[0]).length === 1 ? numbers[0] : numbers[numbers.length-1]

                        console.log(stray([17, 17, 3, 17, 17, 17, 17]));
                        console.log(stray([2, 2, 2, 2, 2, 14, 2, 2, 2, 2]));





                        But as Heretic Monkey said, this is probably not the best approach...






                        share|improve this answer










                        New contributor



                        Shaye Ulman is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                        Check out our Code of Conduct.





                        $endgroup$

















                          2












                          $begingroup$

                          Here is how you could implement it with the filter() method:






                          const stray = numbers => +numbers.sort((a, b) => a - b)
                          .filter((n,i,a) => (i === 0 && a[0] !==a[1]) || (i === a.length-1 && a[a.length-1] !== a[a.length-2]));

                          console.log(stray([17, 17, 3, 17, 17, 17, 17]));
                          console.log(stray([2, 2, 2, 2, 2, 14, 2, 2, 2, 2]));





                          Or in more a clean way:






                          const stray = numbers => numbers.sort((a, b) => a - b)
                          .filter(n => n === numbers[0]).length === 1 ? numbers[0] : numbers[numbers.length-1]

                          console.log(stray([17, 17, 3, 17, 17, 17, 17]));
                          console.log(stray([2, 2, 2, 2, 2, 14, 2, 2, 2, 2]));





                          But as Heretic Monkey said, this is probably not the best approach...






                          share|improve this answer










                          New contributor



                          Shaye Ulman is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                          Check out our Code of Conduct.





                          $endgroup$















                            2












                            2








                            2





                            $begingroup$

                            Here is how you could implement it with the filter() method:






                            const stray = numbers => +numbers.sort((a, b) => a - b)
                            .filter((n,i,a) => (i === 0 && a[0] !==a[1]) || (i === a.length-1 && a[a.length-1] !== a[a.length-2]));

                            console.log(stray([17, 17, 3, 17, 17, 17, 17]));
                            console.log(stray([2, 2, 2, 2, 2, 14, 2, 2, 2, 2]));





                            Or in more a clean way:






                            const stray = numbers => numbers.sort((a, b) => a - b)
                            .filter(n => n === numbers[0]).length === 1 ? numbers[0] : numbers[numbers.length-1]

                            console.log(stray([17, 17, 3, 17, 17, 17, 17]));
                            console.log(stray([2, 2, 2, 2, 2, 14, 2, 2, 2, 2]));





                            But as Heretic Monkey said, this is probably not the best approach...






                            share|improve this answer










                            New contributor



                            Shaye Ulman is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                            Check out our Code of Conduct.





                            $endgroup$



                            Here is how you could implement it with the filter() method:






                            const stray = numbers => +numbers.sort((a, b) => a - b)
                            .filter((n,i,a) => (i === 0 && a[0] !==a[1]) || (i === a.length-1 && a[a.length-1] !== a[a.length-2]));

                            console.log(stray([17, 17, 3, 17, 17, 17, 17]));
                            console.log(stray([2, 2, 2, 2, 2, 14, 2, 2, 2, 2]));





                            Or in more a clean way:






                            const stray = numbers => numbers.sort((a, b) => a - b)
                            .filter(n => n === numbers[0]).length === 1 ? numbers[0] : numbers[numbers.length-1]

                            console.log(stray([17, 17, 3, 17, 17, 17, 17]));
                            console.log(stray([2, 2, 2, 2, 2, 14, 2, 2, 2, 2]));





                            But as Heretic Monkey said, this is probably not the best approach...






                            const stray = numbers => +numbers.sort((a, b) => a - b)
                            .filter((n,i,a) => (i === 0 && a[0] !==a[1]) || (i === a.length-1 && a[a.length-1] !== a[a.length-2]));

                            console.log(stray([17, 17, 3, 17, 17, 17, 17]));
                            console.log(stray([2, 2, 2, 2, 2, 14, 2, 2, 2, 2]));





                            const stray = numbers => +numbers.sort((a, b) => a - b)
                            .filter((n,i,a) => (i === 0 && a[0] !==a[1]) || (i === a.length-1 && a[a.length-1] !== a[a.length-2]));

                            console.log(stray([17, 17, 3, 17, 17, 17, 17]));
                            console.log(stray([2, 2, 2, 2, 2, 14, 2, 2, 2, 2]));





                            const stray = numbers => numbers.sort((a, b) => a - b)
                            .filter(n => n === numbers[0]).length === 1 ? numbers[0] : numbers[numbers.length-1]

                            console.log(stray([17, 17, 3, 17, 17, 17, 17]));
                            console.log(stray([2, 2, 2, 2, 2, 14, 2, 2, 2, 2]));





                            const stray = numbers => numbers.sort((a, b) => a - b)
                            .filter(n => n === numbers[0]).length === 1 ? numbers[0] : numbers[numbers.length-1]

                            console.log(stray([17, 17, 3, 17, 17, 17, 17]));
                            console.log(stray([2, 2, 2, 2, 2, 14, 2, 2, 2, 2]));






                            share|improve this answer










                            New contributor



                            Shaye Ulman is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                            Check out our Code of Conduct.








                            share|improve this answer



                            share|improve this answer








                            edited 9 hours ago





















                            New contributor



                            Shaye Ulman is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                            Check out our Code of Conduct.








                            answered 9 hours ago









                            Shaye UlmanShaye Ulman

                            212 bronze badges




                            212 bronze badges




                            New contributor



                            Shaye Ulman is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                            Check out our Code of Conduct.




                            New contributor




                            Shaye Ulman is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                            Check out our Code of Conduct.























                                2












                                $begingroup$

                                This is a similar idea to the other answers here, but the implementation is a bit different.



                                First of all, we can assume that the array's length is at least 3, since it needs to have at least two of the same values and one different value.



                                Let's start by handling the case where the stray value is not in the first element. We could simply write:



                                a.find(v => v != a[0])


                                That is, find an element that's different from the first element. But what if the stray element comes first in the array? We can check if the first two elements differ. If they do, then the stray is either in the first or second position, so the third element is not a stray. In this case, we can check against the third element instead of the first; otherwise we check against the first element as before, thus:



                                a.find(v => a[0] != a[1] ? v != a[2] : v != a[0])


                                This is a bit code-golfey and not very readable, so I wouldn't recommend it in production, but it may be of some interest as a curiosity.



                                It may be worth noting that this solution appears to perform quite well, and can be further optimized by doing the inequality check on the first two elements before invoking find, and by using the third parameter to find to access the array, making the callback a pure function and eliminating the need to reference the array via the closed-over variable, for example:



                                a.find(a[0] != a[1] ?
                                (v, i, a) => v != a[2] :
                                (v, i, a) => v != a[0])





                                share|improve this answer










                                New contributor



                                user11536834 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                                Check out our Code of Conduct.





                                $endgroup$

















                                  2












                                  $begingroup$

                                  This is a similar idea to the other answers here, but the implementation is a bit different.



                                  First of all, we can assume that the array's length is at least 3, since it needs to have at least two of the same values and one different value.



                                  Let's start by handling the case where the stray value is not in the first element. We could simply write:



                                  a.find(v => v != a[0])


                                  That is, find an element that's different from the first element. But what if the stray element comes first in the array? We can check if the first two elements differ. If they do, then the stray is either in the first or second position, so the third element is not a stray. In this case, we can check against the third element instead of the first; otherwise we check against the first element as before, thus:



                                  a.find(v => a[0] != a[1] ? v != a[2] : v != a[0])


                                  This is a bit code-golfey and not very readable, so I wouldn't recommend it in production, but it may be of some interest as a curiosity.



                                  It may be worth noting that this solution appears to perform quite well, and can be further optimized by doing the inequality check on the first two elements before invoking find, and by using the third parameter to find to access the array, making the callback a pure function and eliminating the need to reference the array via the closed-over variable, for example:



                                  a.find(a[0] != a[1] ?
                                  (v, i, a) => v != a[2] :
                                  (v, i, a) => v != a[0])





                                  share|improve this answer










                                  New contributor



                                  user11536834 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                                  Check out our Code of Conduct.





                                  $endgroup$















                                    2












                                    2








                                    2





                                    $begingroup$

                                    This is a similar idea to the other answers here, but the implementation is a bit different.



                                    First of all, we can assume that the array's length is at least 3, since it needs to have at least two of the same values and one different value.



                                    Let's start by handling the case where the stray value is not in the first element. We could simply write:



                                    a.find(v => v != a[0])


                                    That is, find an element that's different from the first element. But what if the stray element comes first in the array? We can check if the first two elements differ. If they do, then the stray is either in the first or second position, so the third element is not a stray. In this case, we can check against the third element instead of the first; otherwise we check against the first element as before, thus:



                                    a.find(v => a[0] != a[1] ? v != a[2] : v != a[0])


                                    This is a bit code-golfey and not very readable, so I wouldn't recommend it in production, but it may be of some interest as a curiosity.



                                    It may be worth noting that this solution appears to perform quite well, and can be further optimized by doing the inequality check on the first two elements before invoking find, and by using the third parameter to find to access the array, making the callback a pure function and eliminating the need to reference the array via the closed-over variable, for example:



                                    a.find(a[0] != a[1] ?
                                    (v, i, a) => v != a[2] :
                                    (v, i, a) => v != a[0])





                                    share|improve this answer










                                    New contributor



                                    user11536834 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                                    Check out our Code of Conduct.





                                    $endgroup$



                                    This is a similar idea to the other answers here, but the implementation is a bit different.



                                    First of all, we can assume that the array's length is at least 3, since it needs to have at least two of the same values and one different value.



                                    Let's start by handling the case where the stray value is not in the first element. We could simply write:



                                    a.find(v => v != a[0])


                                    That is, find an element that's different from the first element. But what if the stray element comes first in the array? We can check if the first two elements differ. If they do, then the stray is either in the first or second position, so the third element is not a stray. In this case, we can check against the third element instead of the first; otherwise we check against the first element as before, thus:



                                    a.find(v => a[0] != a[1] ? v != a[2] : v != a[0])


                                    This is a bit code-golfey and not very readable, so I wouldn't recommend it in production, but it may be of some interest as a curiosity.



                                    It may be worth noting that this solution appears to perform quite well, and can be further optimized by doing the inequality check on the first two elements before invoking find, and by using the third parameter to find to access the array, making the callback a pure function and eliminating the need to reference the array via the closed-over variable, for example:



                                    a.find(a[0] != a[1] ?
                                    (v, i, a) => v != a[2] :
                                    (v, i, a) => v != a[0])






                                    share|improve this answer










                                    New contributor



                                    user11536834 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                                    Check out our Code of Conduct.








                                    share|improve this answer



                                    share|improve this answer








                                    edited 5 hours ago





















                                    New contributor



                                    user11536834 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                                    Check out our Code of Conduct.








                                    answered 6 hours ago









                                    user11536834user11536834

                                    614 bronze badges




                                    614 bronze badges




                                    New contributor



                                    user11536834 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                                    Check out our Code of Conduct.




                                    New contributor




                                    user11536834 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                                    Check out our Code of Conduct.





























                                        draft saved

                                        draft discarded
















































                                        Thanks for contributing an answer to Code Review Stack Exchange!


                                        • Please be sure to answer the question. Provide details and share your research!

                                        But avoid


                                        • Asking for help, clarification, or responding to other answers.

                                        • Making statements based on opinion; back them up with references or personal experience.

                                        Use MathJax to format equations. MathJax reference.


                                        To learn more, see our tips on writing great answers.




                                        draft saved


                                        draft discarded














                                        StackExchange.ready(
                                        function ()
                                        StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fcodereview.stackexchange.com%2fquestions%2f223821%2ffind-the-one-element-in-an-array-that-is-different-from-the-others%23new-answer', 'question_page');

                                        );

                                        Post as a guest















                                        Required, but never shown





















































                                        Required, but never shown














                                        Required, but never shown












                                        Required, but never shown







                                        Required, but never shown

































                                        Required, but never shown














                                        Required, but never shown












                                        Required, but never shown







                                        Required, but never shown







                                        Popular posts from this blog

                                        ParseJSON using SSJSUsing AMPscript with SSJS ActivitiesHow to resubscribe a user in Marketing cloud using SSJS?Pulling Subscriber Status from Lists using SSJSRetrieving Emails using SSJSProblem in updating DE using SSJSUsing SSJS to send single email in Marketing CloudError adding EmailSendDefinition using SSJS

                                        Кампала Садржај Географија Географија Историја Становништво Привреда Партнерски градови Референце Спољашње везе Мени за навигацију0°11′ СГШ; 32°20′ ИГД / 0.18° СГШ; 32.34° ИГД / 0.18; 32.340°11′ СГШ; 32°20′ ИГД / 0.18° СГШ; 32.34° ИГД / 0.18; 32.34МедијиПодациЗванични веб-сајту

                                        19. јануар Садржај Догађаји Рођења Смрти Празници и дани сећања Види још Референце Мени за навигацијуу