Codility's Permutation Check in C#Perm-Missing-Elem: 100% functional score, but only 60% performanceFind the odd occurrences in an arrayRotate an array to the right by a given number of stepsPermMissingElem- find the missing element in a given permutation in C#Finding an equilibrium index in an int arrayCodility “PermMissingElem” SolutionPermCheck CodilityCodility Cyclic rotation in C#

Knights and Knaves: What does C say?

Garage door sticks on a bolt

Would an object shot from earth fall into the sun?

Is determiner 'a' needed here?

Can I exile my opponent's Progenitus/True-Name Nemesis with Teferi, Hero of Dominaria's emblem?

Where to find the Arxiv endorsement code?

Why, even after his imprisonment, people keep calling Hannibal Lecter "Doctor"?

Can I target any number of creatures, even if the ability would have no effect?

Why would an airline put 15 passengers at once on standby?

Assembly of PCBs containing a mix of SMT and thru-hole parts?

A word that refers to saying something in an attempt to anger or embarrass someone into doing something that they don’t want to do?

How do we know neutrons have no charge?

How far in Advance do I need to book tickets on the West Highland Line in Scotland for a Multi-part Journey?

How do my husband and I get over our fear of having another difficult baby?

How to stop the death waves in my city?

Concerning a relationship in the team

How to convert what I'm singing to notes

Why isn't there armor to protect from spells in the Potterverse?

How much horsepower to weight is required for a 1:1 thrust ratio

Convert a string of digits from words to an integer

Which altitudes are safest for VFR?

What does `idem` mean in the VIM docs?

Why is the Common Agricultural Policy unfavourable to the UK?

Why aren't faces sharp in my f/1.8 portraits even though I'm carefully using center-point autofocus?



Codility's Permutation Check in C#


Perm-Missing-Elem: 100% functional score, but only 60% performanceFind the odd occurrences in an arrayRotate an array to the right by a given number of stepsPermMissingElem- find the missing element in a given permutation in C#Finding an equilibrium index in an int arrayCodility “PermMissingElem” SolutionPermCheck CodilityCodility Cyclic rotation in C#






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








2












$begingroup$


I've made a few things in Java, and now I'm learning C#.

The code passes the tests with 100% final score.
I want to know what things can be improved in my code.




Task description






A non-empty array A consisting of N integers is
given.



A permutation is a sequence containing each element from 1 to N once,
and only once.



For example, array A such that:



A[0] = 4
A[1] = 1
A[2] = 3
A[3] = 2 is a permutation, but array A such that:

A[0] = 4
A[1] = 1
A[2] = 3 is not a permutation, because value 2 is missing.


The goal is to check whether array A is a permutation.



Write a function:



class Solution public int solution(int[] A);



that, given an array A, returns 1 if array A is a permutation and 0 if
it is not.



For example, given array A such that:



A[0] = 4
A[1] = 1
A[2] = 3
A[3] = 2 the function should return 1.


Given array A such that:



A[0] = 4
A[1] = 1
A[2] = 3 the function should return 0.


Write an efficient algorithm for the following assumptions:



N is an integer within the range [1..100,000]; each element of array A
is an integer within the range [1..1,000,000,000].




public static int solution(int[] A)

int[] orderedPermut = new int[A.Length];
int[] unrepeated = new int[A.Length];
int orderedPermutSum = 0, unrepeatedSum = 0;
for ( int i = 0; i < A.Length; i++ )

orderedPermutSum += i + 1;
orderedPermut[i] = i + 1;
if ( A[i] >= A.Length + 1
if ( orderedPermutSum == unrepeatedSum )

return 1;

return 0;




Thanks in advice.










share|improve this question











$endgroup$




















    2












    $begingroup$


    I've made a few things in Java, and now I'm learning C#.

    The code passes the tests with 100% final score.
    I want to know what things can be improved in my code.




    Task description






    A non-empty array A consisting of N integers is
    given.



    A permutation is a sequence containing each element from 1 to N once,
    and only once.



    For example, array A such that:



    A[0] = 4
    A[1] = 1
    A[2] = 3
    A[3] = 2 is a permutation, but array A such that:

    A[0] = 4
    A[1] = 1
    A[2] = 3 is not a permutation, because value 2 is missing.


    The goal is to check whether array A is a permutation.



    Write a function:



    class Solution public int solution(int[] A);



    that, given an array A, returns 1 if array A is a permutation and 0 if
    it is not.



    For example, given array A such that:



    A[0] = 4
    A[1] = 1
    A[2] = 3
    A[3] = 2 the function should return 1.


    Given array A such that:



    A[0] = 4
    A[1] = 1
    A[2] = 3 the function should return 0.


    Write an efficient algorithm for the following assumptions:



    N is an integer within the range [1..100,000]; each element of array A
    is an integer within the range [1..1,000,000,000].




    public static int solution(int[] A)

    int[] orderedPermut = new int[A.Length];
    int[] unrepeated = new int[A.Length];
    int orderedPermutSum = 0, unrepeatedSum = 0;
    for ( int i = 0; i < A.Length; i++ )

    orderedPermutSum += i + 1;
    orderedPermut[i] = i + 1;
    if ( A[i] >= A.Length + 1
    if ( orderedPermutSum == unrepeatedSum )

    return 1;

    return 0;




    Thanks in advice.










    share|improve this question











    $endgroup$
















      2












      2








      2





      $begingroup$


      I've made a few things in Java, and now I'm learning C#.

      The code passes the tests with 100% final score.
      I want to know what things can be improved in my code.




      Task description






      A non-empty array A consisting of N integers is
      given.



      A permutation is a sequence containing each element from 1 to N once,
      and only once.



      For example, array A such that:



      A[0] = 4
      A[1] = 1
      A[2] = 3
      A[3] = 2 is a permutation, but array A such that:

      A[0] = 4
      A[1] = 1
      A[2] = 3 is not a permutation, because value 2 is missing.


      The goal is to check whether array A is a permutation.



      Write a function:



      class Solution public int solution(int[] A);



      that, given an array A, returns 1 if array A is a permutation and 0 if
      it is not.



      For example, given array A such that:



      A[0] = 4
      A[1] = 1
      A[2] = 3
      A[3] = 2 the function should return 1.


      Given array A such that:



      A[0] = 4
      A[1] = 1
      A[2] = 3 the function should return 0.


      Write an efficient algorithm for the following assumptions:



      N is an integer within the range [1..100,000]; each element of array A
      is an integer within the range [1..1,000,000,000].




      public static int solution(int[] A)

      int[] orderedPermut = new int[A.Length];
      int[] unrepeated = new int[A.Length];
      int orderedPermutSum = 0, unrepeatedSum = 0;
      for ( int i = 0; i < A.Length; i++ )

      orderedPermutSum += i + 1;
      orderedPermut[i] = i + 1;
      if ( A[i] >= A.Length + 1
      if ( orderedPermutSum == unrepeatedSum )

      return 1;

      return 0;




      Thanks in advice.










      share|improve this question











      $endgroup$




      I've made a few things in Java, and now I'm learning C#.

      The code passes the tests with 100% final score.
      I want to know what things can be improved in my code.




      Task description






      A non-empty array A consisting of N integers is
      given.



      A permutation is a sequence containing each element from 1 to N once,
      and only once.



      For example, array A such that:



      A[0] = 4
      A[1] = 1
      A[2] = 3
      A[3] = 2 is a permutation, but array A such that:

      A[0] = 4
      A[1] = 1
      A[2] = 3 is not a permutation, because value 2 is missing.


      The goal is to check whether array A is a permutation.



      Write a function:



      class Solution public int solution(int[] A);



      that, given an array A, returns 1 if array A is a permutation and 0 if
      it is not.



      For example, given array A such that:



      A[0] = 4
      A[1] = 1
      A[2] = 3
      A[3] = 2 the function should return 1.


      Given array A such that:



      A[0] = 4
      A[1] = 1
      A[2] = 3 the function should return 0.


      Write an efficient algorithm for the following assumptions:



      N is an integer within the range [1..100,000]; each element of array A
      is an integer within the range [1..1,000,000,000].




      public static int solution(int[] A)

      int[] orderedPermut = new int[A.Length];
      int[] unrepeated = new int[A.Length];
      int orderedPermutSum = 0, unrepeatedSum = 0;
      for ( int i = 0; i < A.Length; i++ )

      orderedPermutSum += i + 1;
      orderedPermut[i] = i + 1;
      if ( A[i] >= A.Length + 1
      if ( orderedPermutSum == unrepeatedSum )

      return 1;

      return 0;




      Thanks in advice.







      c# beginner programming-challenge array combinatorics






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited 8 hours ago









      dfhwze

      12.6k3 gold badges22 silver badges90 bronze badges




      12.6k3 gold badges22 silver badges90 bronze badges










      asked 8 hours ago









      newbienewbie

      1999 bronze badges




      1999 bronze badges























          2 Answers
          2






          active

          oldest

          votes


















          2














          $begingroup$

          One of the unfortunate things you'll notice about coding challenges is that the requirements often force you to write code that isn't ideal. I'm going to call these out, even though in this case they're outside of your control.



          Silly requirement: The method is named solution. This name tells us nothing about the behavior of the function. Also (although less importantly), it goes against the C# method naming convention of PascalCase. A much better name would be something like IsPermutation.



          Silly requirement: The parameter is named A. Single-letter variable names are almost never a good idea. Also (although less importantly), it goes against the C# parameter naming convention of camelCase. It's hard to be descriptive about the context here (since it's just a coding challenge and not a "real life" business problem), but even something like values would be better.



          Silly requirement: The return type of the function is int. The given array is either a permutation of 1..N or it isn't. We don't have a range of possible return values; we have a true/false condition. A better return type would be bool.



          Algorithm inefficiency: There's no need to initialize two new int[]. As you discovered, one new array is sufficient to track unique values.



          Algorithm inefficiency: Again, you've already discovered this. If an array has the correct elements in some order, its sum will necessarily match that of the unordered array. Meanwhile the converse is not true; there are many arrays with the same sum which are not permutations. So you needn't bother tracking the sum at all.



          Syntax: If you take only one piece of my advice, let it be this one: for loops are not the answer. If you are iterating over the indexes of an array, and the only thing you use the index for is to grab the ith element, use a foreach. The situation where you actually need to know the index, and therefore need a for loop, is very rare.



          Semantics: Does an array of int take less space in memory than an array of bool? I don't know, and I don't care. If all I'm tracking is true/false values, I'm going to choose a bool[]. Because that choice tells the person reading the code why I created the variable.



          Formatting: Another major difference between formatting conventions in C# and Java (besides the PascalCase/camelCase conventions I already mentioned) is C#'s convention of putting opening curly braces on the next line (known as K&R style).




          With all of that advice applied, and some XML documentation comments (which enable Intellisense information when hovering or typing in Visual Studio), we'll end up with something like this:





          /// <summary>
          /// Check whether the given array contains each integer 1..N exactly once.
          /// </summary>
          /// <returns>
          /// True if <paramref name="values" /> is a permutation of 1..N,
          /// False otherwise.
          /// </returns>
          public static bool IsPermutation(int[] values)

          var seen = new bool[values.length];

          foreach (var value in values)
          value > values.length)

          // Out of range: not a permutation
          return false;

          else if (seen[value - 1])

          // Duplicated value: not a permutation
          return false;

          else

          // Value is OK. Mark as seen.
          seen[value - 1] = true;



          // All values in range, no duplicates: a valid permutation
          return true;






          share|improve this answer











          $endgroup$










          • 2




            $begingroup$
            I asked a general question about this kind of reviews where you challenge the challenge itself :) -> codereview.meta.stackexchange.com/questions/9345/…
            $endgroup$
            – dfhwze
            5 hours ago






          • 1




            $begingroup$
            Good idea. My thinking was to bridge the gap between a good solution to the challenge, and good "real life" code. I'm interested in how valuable the community finds that type of feedback.
            $endgroup$
            – benj2240
            5 hours ago










          • $begingroup$
            So am I. I've also commented on challenge requirements in some of my reviews, but never to this extend. I find it an interesting way of reviewing :)
            $endgroup$
            – dfhwze
            5 hours ago


















          2














          $begingroup$

          I checked the solution to this problem in codesays (answered by Sheng).
          One thing I can improve from his better solution is that he followed the same approach, but didn't check if the sum of a proper and ordered permutation was correct, so he didn't use an ordered array.
          I used two counters, one that I knew was correct, and another one that could go wrong, but if I think about it, if no elements were repeated, nor out of range, then checking for the sum to be right wasn't necessary, because it must be a permutation if that was the case. Checking for negative numbers was something I could also do, and then decide it was not a permutation, no tests tried arrays with negative numbers, though



          class Solution 
          public static int solution(int[] A)
          int[] counter = new int [A.length];
          for(int i= 0; i< A.length; i++)
          return 1;







          share|improve this answer









          $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/4.0/"u003ecc by-sa 4.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%2f229525%2fcodilitys-permutation-check-in-c%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown

























            2 Answers
            2






            active

            oldest

            votes








            2 Answers
            2






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            2














            $begingroup$

            One of the unfortunate things you'll notice about coding challenges is that the requirements often force you to write code that isn't ideal. I'm going to call these out, even though in this case they're outside of your control.



            Silly requirement: The method is named solution. This name tells us nothing about the behavior of the function. Also (although less importantly), it goes against the C# method naming convention of PascalCase. A much better name would be something like IsPermutation.



            Silly requirement: The parameter is named A. Single-letter variable names are almost never a good idea. Also (although less importantly), it goes against the C# parameter naming convention of camelCase. It's hard to be descriptive about the context here (since it's just a coding challenge and not a "real life" business problem), but even something like values would be better.



            Silly requirement: The return type of the function is int. The given array is either a permutation of 1..N or it isn't. We don't have a range of possible return values; we have a true/false condition. A better return type would be bool.



            Algorithm inefficiency: There's no need to initialize two new int[]. As you discovered, one new array is sufficient to track unique values.



            Algorithm inefficiency: Again, you've already discovered this. If an array has the correct elements in some order, its sum will necessarily match that of the unordered array. Meanwhile the converse is not true; there are many arrays with the same sum which are not permutations. So you needn't bother tracking the sum at all.



            Syntax: If you take only one piece of my advice, let it be this one: for loops are not the answer. If you are iterating over the indexes of an array, and the only thing you use the index for is to grab the ith element, use a foreach. The situation where you actually need to know the index, and therefore need a for loop, is very rare.



            Semantics: Does an array of int take less space in memory than an array of bool? I don't know, and I don't care. If all I'm tracking is true/false values, I'm going to choose a bool[]. Because that choice tells the person reading the code why I created the variable.



            Formatting: Another major difference between formatting conventions in C# and Java (besides the PascalCase/camelCase conventions I already mentioned) is C#'s convention of putting opening curly braces on the next line (known as K&R style).




            With all of that advice applied, and some XML documentation comments (which enable Intellisense information when hovering or typing in Visual Studio), we'll end up with something like this:





            /// <summary>
            /// Check whether the given array contains each integer 1..N exactly once.
            /// </summary>
            /// <returns>
            /// True if <paramref name="values" /> is a permutation of 1..N,
            /// False otherwise.
            /// </returns>
            public static bool IsPermutation(int[] values)

            var seen = new bool[values.length];

            foreach (var value in values)
            value > values.length)

            // Out of range: not a permutation
            return false;

            else if (seen[value - 1])

            // Duplicated value: not a permutation
            return false;

            else

            // Value is OK. Mark as seen.
            seen[value - 1] = true;



            // All values in range, no duplicates: a valid permutation
            return true;






            share|improve this answer











            $endgroup$










            • 2




              $begingroup$
              I asked a general question about this kind of reviews where you challenge the challenge itself :) -> codereview.meta.stackexchange.com/questions/9345/…
              $endgroup$
              – dfhwze
              5 hours ago






            • 1




              $begingroup$
              Good idea. My thinking was to bridge the gap between a good solution to the challenge, and good "real life" code. I'm interested in how valuable the community finds that type of feedback.
              $endgroup$
              – benj2240
              5 hours ago










            • $begingroup$
              So am I. I've also commented on challenge requirements in some of my reviews, but never to this extend. I find it an interesting way of reviewing :)
              $endgroup$
              – dfhwze
              5 hours ago















            2














            $begingroup$

            One of the unfortunate things you'll notice about coding challenges is that the requirements often force you to write code that isn't ideal. I'm going to call these out, even though in this case they're outside of your control.



            Silly requirement: The method is named solution. This name tells us nothing about the behavior of the function. Also (although less importantly), it goes against the C# method naming convention of PascalCase. A much better name would be something like IsPermutation.



            Silly requirement: The parameter is named A. Single-letter variable names are almost never a good idea. Also (although less importantly), it goes against the C# parameter naming convention of camelCase. It's hard to be descriptive about the context here (since it's just a coding challenge and not a "real life" business problem), but even something like values would be better.



            Silly requirement: The return type of the function is int. The given array is either a permutation of 1..N or it isn't. We don't have a range of possible return values; we have a true/false condition. A better return type would be bool.



            Algorithm inefficiency: There's no need to initialize two new int[]. As you discovered, one new array is sufficient to track unique values.



            Algorithm inefficiency: Again, you've already discovered this. If an array has the correct elements in some order, its sum will necessarily match that of the unordered array. Meanwhile the converse is not true; there are many arrays with the same sum which are not permutations. So you needn't bother tracking the sum at all.



            Syntax: If you take only one piece of my advice, let it be this one: for loops are not the answer. If you are iterating over the indexes of an array, and the only thing you use the index for is to grab the ith element, use a foreach. The situation where you actually need to know the index, and therefore need a for loop, is very rare.



            Semantics: Does an array of int take less space in memory than an array of bool? I don't know, and I don't care. If all I'm tracking is true/false values, I'm going to choose a bool[]. Because that choice tells the person reading the code why I created the variable.



            Formatting: Another major difference between formatting conventions in C# and Java (besides the PascalCase/camelCase conventions I already mentioned) is C#'s convention of putting opening curly braces on the next line (known as K&R style).




            With all of that advice applied, and some XML documentation comments (which enable Intellisense information when hovering or typing in Visual Studio), we'll end up with something like this:





            /// <summary>
            /// Check whether the given array contains each integer 1..N exactly once.
            /// </summary>
            /// <returns>
            /// True if <paramref name="values" /> is a permutation of 1..N,
            /// False otherwise.
            /// </returns>
            public static bool IsPermutation(int[] values)

            var seen = new bool[values.length];

            foreach (var value in values)
            value > values.length)

            // Out of range: not a permutation
            return false;

            else if (seen[value - 1])

            // Duplicated value: not a permutation
            return false;

            else

            // Value is OK. Mark as seen.
            seen[value - 1] = true;



            // All values in range, no duplicates: a valid permutation
            return true;






            share|improve this answer











            $endgroup$










            • 2




              $begingroup$
              I asked a general question about this kind of reviews where you challenge the challenge itself :) -> codereview.meta.stackexchange.com/questions/9345/…
              $endgroup$
              – dfhwze
              5 hours ago






            • 1




              $begingroup$
              Good idea. My thinking was to bridge the gap between a good solution to the challenge, and good "real life" code. I'm interested in how valuable the community finds that type of feedback.
              $endgroup$
              – benj2240
              5 hours ago










            • $begingroup$
              So am I. I've also commented on challenge requirements in some of my reviews, but never to this extend. I find it an interesting way of reviewing :)
              $endgroup$
              – dfhwze
              5 hours ago













            2














            2










            2







            $begingroup$

            One of the unfortunate things you'll notice about coding challenges is that the requirements often force you to write code that isn't ideal. I'm going to call these out, even though in this case they're outside of your control.



            Silly requirement: The method is named solution. This name tells us nothing about the behavior of the function. Also (although less importantly), it goes against the C# method naming convention of PascalCase. A much better name would be something like IsPermutation.



            Silly requirement: The parameter is named A. Single-letter variable names are almost never a good idea. Also (although less importantly), it goes against the C# parameter naming convention of camelCase. It's hard to be descriptive about the context here (since it's just a coding challenge and not a "real life" business problem), but even something like values would be better.



            Silly requirement: The return type of the function is int. The given array is either a permutation of 1..N or it isn't. We don't have a range of possible return values; we have a true/false condition. A better return type would be bool.



            Algorithm inefficiency: There's no need to initialize two new int[]. As you discovered, one new array is sufficient to track unique values.



            Algorithm inefficiency: Again, you've already discovered this. If an array has the correct elements in some order, its sum will necessarily match that of the unordered array. Meanwhile the converse is not true; there are many arrays with the same sum which are not permutations. So you needn't bother tracking the sum at all.



            Syntax: If you take only one piece of my advice, let it be this one: for loops are not the answer. If you are iterating over the indexes of an array, and the only thing you use the index for is to grab the ith element, use a foreach. The situation where you actually need to know the index, and therefore need a for loop, is very rare.



            Semantics: Does an array of int take less space in memory than an array of bool? I don't know, and I don't care. If all I'm tracking is true/false values, I'm going to choose a bool[]. Because that choice tells the person reading the code why I created the variable.



            Formatting: Another major difference between formatting conventions in C# and Java (besides the PascalCase/camelCase conventions I already mentioned) is C#'s convention of putting opening curly braces on the next line (known as K&R style).




            With all of that advice applied, and some XML documentation comments (which enable Intellisense information when hovering or typing in Visual Studio), we'll end up with something like this:





            /// <summary>
            /// Check whether the given array contains each integer 1..N exactly once.
            /// </summary>
            /// <returns>
            /// True if <paramref name="values" /> is a permutation of 1..N,
            /// False otherwise.
            /// </returns>
            public static bool IsPermutation(int[] values)

            var seen = new bool[values.length];

            foreach (var value in values)
            value > values.length)

            // Out of range: not a permutation
            return false;

            else if (seen[value - 1])

            // Duplicated value: not a permutation
            return false;

            else

            // Value is OK. Mark as seen.
            seen[value - 1] = true;



            // All values in range, no duplicates: a valid permutation
            return true;






            share|improve this answer











            $endgroup$



            One of the unfortunate things you'll notice about coding challenges is that the requirements often force you to write code that isn't ideal. I'm going to call these out, even though in this case they're outside of your control.



            Silly requirement: The method is named solution. This name tells us nothing about the behavior of the function. Also (although less importantly), it goes against the C# method naming convention of PascalCase. A much better name would be something like IsPermutation.



            Silly requirement: The parameter is named A. Single-letter variable names are almost never a good idea. Also (although less importantly), it goes against the C# parameter naming convention of camelCase. It's hard to be descriptive about the context here (since it's just a coding challenge and not a "real life" business problem), but even something like values would be better.



            Silly requirement: The return type of the function is int. The given array is either a permutation of 1..N or it isn't. We don't have a range of possible return values; we have a true/false condition. A better return type would be bool.



            Algorithm inefficiency: There's no need to initialize two new int[]. As you discovered, one new array is sufficient to track unique values.



            Algorithm inefficiency: Again, you've already discovered this. If an array has the correct elements in some order, its sum will necessarily match that of the unordered array. Meanwhile the converse is not true; there are many arrays with the same sum which are not permutations. So you needn't bother tracking the sum at all.



            Syntax: If you take only one piece of my advice, let it be this one: for loops are not the answer. If you are iterating over the indexes of an array, and the only thing you use the index for is to grab the ith element, use a foreach. The situation where you actually need to know the index, and therefore need a for loop, is very rare.



            Semantics: Does an array of int take less space in memory than an array of bool? I don't know, and I don't care. If all I'm tracking is true/false values, I'm going to choose a bool[]. Because that choice tells the person reading the code why I created the variable.



            Formatting: Another major difference between formatting conventions in C# and Java (besides the PascalCase/camelCase conventions I already mentioned) is C#'s convention of putting opening curly braces on the next line (known as K&R style).




            With all of that advice applied, and some XML documentation comments (which enable Intellisense information when hovering or typing in Visual Studio), we'll end up with something like this:





            /// <summary>
            /// Check whether the given array contains each integer 1..N exactly once.
            /// </summary>
            /// <returns>
            /// True if <paramref name="values" /> is a permutation of 1..N,
            /// False otherwise.
            /// </returns>
            public static bool IsPermutation(int[] values)

            var seen = new bool[values.length];

            foreach (var value in values)
            value > values.length)

            // Out of range: not a permutation
            return false;

            else if (seen[value - 1])

            // Duplicated value: not a permutation
            return false;

            else

            // Value is OK. Mark as seen.
            seen[value - 1] = true;



            // All values in range, no duplicates: a valid permutation
            return true;







            share|improve this answer














            share|improve this answer



            share|improve this answer








            edited 5 hours ago

























            answered 5 hours ago









            benj2240benj2240

            9463 silver badges9 bronze badges




            9463 silver badges9 bronze badges










            • 2




              $begingroup$
              I asked a general question about this kind of reviews where you challenge the challenge itself :) -> codereview.meta.stackexchange.com/questions/9345/…
              $endgroup$
              – dfhwze
              5 hours ago






            • 1




              $begingroup$
              Good idea. My thinking was to bridge the gap between a good solution to the challenge, and good "real life" code. I'm interested in how valuable the community finds that type of feedback.
              $endgroup$
              – benj2240
              5 hours ago










            • $begingroup$
              So am I. I've also commented on challenge requirements in some of my reviews, but never to this extend. I find it an interesting way of reviewing :)
              $endgroup$
              – dfhwze
              5 hours ago












            • 2




              $begingroup$
              I asked a general question about this kind of reviews where you challenge the challenge itself :) -> codereview.meta.stackexchange.com/questions/9345/…
              $endgroup$
              – dfhwze
              5 hours ago






            • 1




              $begingroup$
              Good idea. My thinking was to bridge the gap between a good solution to the challenge, and good "real life" code. I'm interested in how valuable the community finds that type of feedback.
              $endgroup$
              – benj2240
              5 hours ago










            • $begingroup$
              So am I. I've also commented on challenge requirements in some of my reviews, but never to this extend. I find it an interesting way of reviewing :)
              $endgroup$
              – dfhwze
              5 hours ago







            2




            2




            $begingroup$
            I asked a general question about this kind of reviews where you challenge the challenge itself :) -> codereview.meta.stackexchange.com/questions/9345/…
            $endgroup$
            – dfhwze
            5 hours ago




            $begingroup$
            I asked a general question about this kind of reviews where you challenge the challenge itself :) -> codereview.meta.stackexchange.com/questions/9345/…
            $endgroup$
            – dfhwze
            5 hours ago




            1




            1




            $begingroup$
            Good idea. My thinking was to bridge the gap between a good solution to the challenge, and good "real life" code. I'm interested in how valuable the community finds that type of feedback.
            $endgroup$
            – benj2240
            5 hours ago




            $begingroup$
            Good idea. My thinking was to bridge the gap between a good solution to the challenge, and good "real life" code. I'm interested in how valuable the community finds that type of feedback.
            $endgroup$
            – benj2240
            5 hours ago












            $begingroup$
            So am I. I've also commented on challenge requirements in some of my reviews, but never to this extend. I find it an interesting way of reviewing :)
            $endgroup$
            – dfhwze
            5 hours ago




            $begingroup$
            So am I. I've also commented on challenge requirements in some of my reviews, but never to this extend. I find it an interesting way of reviewing :)
            $endgroup$
            – dfhwze
            5 hours ago













            2














            $begingroup$

            I checked the solution to this problem in codesays (answered by Sheng).
            One thing I can improve from his better solution is that he followed the same approach, but didn't check if the sum of a proper and ordered permutation was correct, so he didn't use an ordered array.
            I used two counters, one that I knew was correct, and another one that could go wrong, but if I think about it, if no elements were repeated, nor out of range, then checking for the sum to be right wasn't necessary, because it must be a permutation if that was the case. Checking for negative numbers was something I could also do, and then decide it was not a permutation, no tests tried arrays with negative numbers, though



            class Solution 
            public static int solution(int[] A)
            int[] counter = new int [A.length];
            for(int i= 0; i< A.length; i++)
            return 1;







            share|improve this answer









            $endgroup$



















              2














              $begingroup$

              I checked the solution to this problem in codesays (answered by Sheng).
              One thing I can improve from his better solution is that he followed the same approach, but didn't check if the sum of a proper and ordered permutation was correct, so he didn't use an ordered array.
              I used two counters, one that I knew was correct, and another one that could go wrong, but if I think about it, if no elements were repeated, nor out of range, then checking for the sum to be right wasn't necessary, because it must be a permutation if that was the case. Checking for negative numbers was something I could also do, and then decide it was not a permutation, no tests tried arrays with negative numbers, though



              class Solution 
              public static int solution(int[] A)
              int[] counter = new int [A.length];
              for(int i= 0; i< A.length; i++)
              return 1;







              share|improve this answer









              $endgroup$

















                2














                2










                2







                $begingroup$

                I checked the solution to this problem in codesays (answered by Sheng).
                One thing I can improve from his better solution is that he followed the same approach, but didn't check if the sum of a proper and ordered permutation was correct, so he didn't use an ordered array.
                I used two counters, one that I knew was correct, and another one that could go wrong, but if I think about it, if no elements were repeated, nor out of range, then checking for the sum to be right wasn't necessary, because it must be a permutation if that was the case. Checking for negative numbers was something I could also do, and then decide it was not a permutation, no tests tried arrays with negative numbers, though



                class Solution 
                public static int solution(int[] A)
                int[] counter = new int [A.length];
                for(int i= 0; i< A.length; i++)
                return 1;







                share|improve this answer









                $endgroup$



                I checked the solution to this problem in codesays (answered by Sheng).
                One thing I can improve from his better solution is that he followed the same approach, but didn't check if the sum of a proper and ordered permutation was correct, so he didn't use an ordered array.
                I used two counters, one that I knew was correct, and another one that could go wrong, but if I think about it, if no elements were repeated, nor out of range, then checking for the sum to be right wasn't necessary, because it must be a permutation if that was the case. Checking for negative numbers was something I could also do, and then decide it was not a permutation, no tests tried arrays with negative numbers, though



                class Solution 
                public static int solution(int[] A)
                int[] counter = new int [A.length];
                for(int i= 0; i< A.length; i++)
                return 1;








                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered 8 hours ago









                newbienewbie

                1999 bronze badges




                1999 bronze badges































                    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%2f229525%2fcodilitys-permutation-check-in-c%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

                    Invision Community Contents History See also References External links Navigation menuProprietaryinvisioncommunity.comIPS Community ForumsIPS Community Forumsthis blog entry"License Changes, IP.Board 3.4, and the Future""Interview -- Matt Mecham of Ibforums""CEO Invision Power Board, Matt Mecham Is a Liar, Thief!"IPB License Explanation 1.3, 1.3.1, 2.0, and 2.1ArchivedSecurity Fixes, Updates And Enhancements For IPB 1.3.1Archived"New Demo Accounts - Invision Power Services"the original"New Default Skin"the original"Invision Power Board 3.0.0 and Applications Released"the original"Archived copy"the original"Perpetual licenses being done away with""Release Notes - Invision Power Services""Introducing: IPS Community Suite 4!"Invision Community Release Notes

                    Canceling a color specificationRandomly assigning color to Graphics3D objects?Default color for Filling in Mathematica 9Coloring specific elements of sets with a prime modified order in an array plotHow to pick a color differing significantly from the colors already in a given color list?Detection of the text colorColor numbers based on their valueCan color schemes for use with ColorData include opacity specification?My dynamic color schemes

                    Tom Holland Mục lục Đầu đời và giáo dục | Sự nghiệp | Cuộc sống cá nhân | Phim tham gia | Giải thưởng và đề cử | Chú thích | Liên kết ngoài | Trình đơn chuyển hướngProfile“Person Details for Thomas Stanley Holland, "England and Wales Birth Registration Index, 1837-2008" — FamilySearch.org”"Meet Tom Holland... the 16-year-old star of The Impossible""Schoolboy actor Tom Holland finds himself in Oscar contention for role in tsunami drama"“Naomi Watts on the Prince William and Harry's reaction to her film about the late Princess Diana”lưu trữ"Holland and Pflueger Are West End's Two New 'Billy Elliots'""I'm so envious of my son, the movie star! British writer Dominic Holland's spent 20 years trying to crack Hollywood - but he's been beaten to it by a very unlikely rival"“Richard and Margaret Povey of Jersey, Channel Islands, UK: Information about Thomas Stanley Holland”"Tom Holland to play Billy Elliot""New Billy Elliot leaving the garage"Billy Elliot the Musical - Tom Holland - Billy"A Tale of four Billys: Tom Holland""The Feel Good Factor""Thames Christian College schoolboys join Myleene Klass for The Feelgood Factor""Government launches £600,000 arts bursaries pilot""BILLY's Chapman, Holland, Gardner & Jackson-Keen Visit Prime Minister""Elton John 'blown away' by Billy Elliot fifth birthday" (video with John's interview and fragments of Holland's performance)"First News interviews Arrietty's Tom Holland"“33rd Critics' Circle Film Awards winners”“National Board of Review Current Awards”Bản gốc"Ron Howard Whaling Tale 'In The Heart Of The Sea' Casts Tom Holland"“'Spider-Man' Finds Tom Holland to Star as New Web-Slinger”lưu trữ“Captain America: Civil War (2016)”“Film Review: ‘Captain America: Civil War’”lưu trữ“‘Captain America: Civil War’ review: Choose your own avenger”lưu trữ“The Lost City of Z reviews”“Sony Pictures and Marvel Studios Find Their 'Spider-Man' Star and Director”“‘Mary Magdalene’, ‘Current War’ & ‘Wind River’ Get 2017 Release Dates From Weinstein”“Lionsgate Unleashing Daisy Ridley & Tom Holland Starrer ‘Chaos Walking’ In Cannes”“PTA's 'Master' Leads Chicago Film Critics Nominations, UPDATED: Houston and Indiana Critics Nominations”“Nominaciones Goya 2013 Telecinco Cinema – ENG”“Jameson Empire Film Awards: Martin Freeman wins best actor for performance in The Hobbit”“34th Annual Young Artist Awards”Bản gốc“Teen Choice Awards 2016—Captain America: Civil War Leads Second Wave of Nominations”“BAFTA Film Award Nominations: ‘La La Land’ Leads Race”“Saturn Awards Nominations 2017: 'Rogue One,' 'Walking Dead' Lead”Tom HollandTom HollandTom HollandTom Hollandmedia.gettyimages.comWorldCat Identities300279794no20130442900000 0004 0355 42791085670554170004732cb16706349t(data)XX5557367