Coding Challenge Solution - Good RangeBit-twiddling for a custom image formatFinding complementary pairsCodeChef Matrix RotationSummation of Arithmetic Progression Modulo SeriesSPOJ “To and Fro”Hackerrank's Sherlock and ArrayInteger packs (and integer pack utilities) for template meta-programmingHackerRank, Sherlock and ArrayLCD Display Programming challenge solutionk-combinations in lexicographic order (using given algorithm)

Can you please explain this joke: "I'm going bananas is what I tell my bananas before I leave the house"?

Creating Fictional Slavic Place Names

Coding Challenge Solution - Good Range

Order by does not work as I expect

Why does my electric oven present the option of 40A and 50A breakers?

Joist hangers to use for rough cut 2x8 (2 3/4" x 8 3/4")?

The most awesome army: 80 men left and 81 returned. Is it true?

If a massive object like Jupiter flew past the Earth how close would it need to come to pull people off of the surface?

When was the word "ambigu" first used with the sense of "meal with all items served at the same time"?

Could a soul from the Soulmonger be restored in the ToA campaign after this event?

What is a simple, physical situation where complex numbers emerge naturally?

How should I push back against my job assigning "homework"?

How did the Zip Chip and RocketChip accelerators work for the Apple II?

Is there a way to save this session?

What's the most polite way to tell a manager "shut up and let me work"?

Did airlines fly their aircraft slower in response to oil prices in the 1970s?

Is it possible to kill all life on Earth?

If a problem only occurs randomly once in every N times on average, how many tests do I have to perform to be certain that it's now fixed?

Are there mythical creatures in the world of Game of Thrones?

Different PCB color ( is it different material? )

Rotated Position of Integers

Does a component pouch automatically contain components?

Can a helicopter mask itself from Radar?

How was Apollo supposed to rendezvous in the case of a lunar abort?



Coding Challenge Solution - Good Range


Bit-twiddling for a custom image formatFinding complementary pairsCodeChef Matrix RotationSummation of Arithmetic Progression Modulo SeriesSPOJ “To and Fro”Hackerrank's Sherlock and ArrayInteger packs (and integer pack utilities) for template meta-programmingHackerRank, Sherlock and ArrayLCD Display Programming challenge solutionk-combinations in lexicographic order (using given algorithm)






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








3












$begingroup$


This my solution to this Good Range Coding Challenge




There is a number space given from 1 to N. And there are M queries followed by that. In each query, we were given a number between 1 to N (both inclusive). We add these number one by one into a set.



Good range: A range in which there is exactly one element present from the set.



For each query, we need to find the good ranges. We need to return the sum of boundry of all good ranges.



Input:



First line will take two integer for input N and M.
Then following m lines would be numbers between 1 and N (both inclusive).



Output:



Following M lines contains sum of boudaries of good ranges.



Note:



Range can consist of single element and represented as (x-x) where boundary sum will be x+x.



Example:



Input:




10 4 
2
5
7
9



Output:




11 
18
30
46



Explaination:




step-1) set: 2 
good range: (1-10)
sum: 1+10=11

step-2) set: 2 5
good range: (1-4), (3-10)
sum: 1+4+3+10=18

step-3) set: 2 5 7
good range: (1-4), (3-6), (6-10)
sum: 1+4+3+6+6+10=30

step-4) set: 2 5 7 9
good range: (1-4), (3-6), (6-8), (8-10)
sum: 1+4+3+6+6+8+8+10=46


#include <iostream>
#include <set>
using namespace std;

class Solution

public:
Solution(const unsigned int _N, const unsigned int _M) : N(_N), M(_M)


void solve()

for(unsigned int i=0; i<M; ++i)

unsigned int v;
cin >> v;
cout << "New Element = " << v << endl;
q.insert(v);
print_res();
cout << endl;



void print_res()

unsigned int left=1;
auto it=q.begin();
unsigned int last = *it;

for(++it; it!=q.end(); ++it)

const unsigned int curr = *it;
const unsigned int right = curr-1;
cout << "[" << left << ", "<< right << "] contains " << last << " and sum = " << (left+right) << endl;
left = last+1;
last = curr;

const unsigned right = N;
cout << "[" << left << ", "<< right << "] contains " << last << " and sum = " << (left+right) << endl;


private:
unsigned int N;
unsigned int M;
set<unsigned int> q;
;


int main()
// your code goes here
unsigned int N=0;
unsigned int M=0;
cin >> N >> M;
Solution sol(N,M);
sol.solve();
return 0;




Note: I am aware I'm returning more information than required by the problem description but I have chosen to do it to include also debugging information










share|improve this question











$endgroup$


















    3












    $begingroup$


    This my solution to this Good Range Coding Challenge




    There is a number space given from 1 to N. And there are M queries followed by that. In each query, we were given a number between 1 to N (both inclusive). We add these number one by one into a set.



    Good range: A range in which there is exactly one element present from the set.



    For each query, we need to find the good ranges. We need to return the sum of boundry of all good ranges.



    Input:



    First line will take two integer for input N and M.
    Then following m lines would be numbers between 1 and N (both inclusive).



    Output:



    Following M lines contains sum of boudaries of good ranges.



    Note:



    Range can consist of single element and represented as (x-x) where boundary sum will be x+x.



    Example:



    Input:




    10 4 
    2
    5
    7
    9



    Output:




    11 
    18
    30
    46



    Explaination:




    step-1) set: 2 
    good range: (1-10)
    sum: 1+10=11

    step-2) set: 2 5
    good range: (1-4), (3-10)
    sum: 1+4+3+10=18

    step-3) set: 2 5 7
    good range: (1-4), (3-6), (6-10)
    sum: 1+4+3+6+6+10=30

    step-4) set: 2 5 7 9
    good range: (1-4), (3-6), (6-8), (8-10)
    sum: 1+4+3+6+6+8+8+10=46


    #include <iostream>
    #include <set>
    using namespace std;

    class Solution

    public:
    Solution(const unsigned int _N, const unsigned int _M) : N(_N), M(_M)


    void solve()

    for(unsigned int i=0; i<M; ++i)

    unsigned int v;
    cin >> v;
    cout << "New Element = " << v << endl;
    q.insert(v);
    print_res();
    cout << endl;



    void print_res()

    unsigned int left=1;
    auto it=q.begin();
    unsigned int last = *it;

    for(++it; it!=q.end(); ++it)

    const unsigned int curr = *it;
    const unsigned int right = curr-1;
    cout << "[" << left << ", "<< right << "] contains " << last << " and sum = " << (left+right) << endl;
    left = last+1;
    last = curr;

    const unsigned right = N;
    cout << "[" << left << ", "<< right << "] contains " << last << " and sum = " << (left+right) << endl;


    private:
    unsigned int N;
    unsigned int M;
    set<unsigned int> q;
    ;


    int main()
    // your code goes here
    unsigned int N=0;
    unsigned int M=0;
    cin >> N >> M;
    Solution sol(N,M);
    sol.solve();
    return 0;




    Note: I am aware I'm returning more information than required by the problem description but I have chosen to do it to include also debugging information










    share|improve this question











    $endgroup$














      3












      3








      3


      1



      $begingroup$


      This my solution to this Good Range Coding Challenge




      There is a number space given from 1 to N. And there are M queries followed by that. In each query, we were given a number between 1 to N (both inclusive). We add these number one by one into a set.



      Good range: A range in which there is exactly one element present from the set.



      For each query, we need to find the good ranges. We need to return the sum of boundry of all good ranges.



      Input:



      First line will take two integer for input N and M.
      Then following m lines would be numbers between 1 and N (both inclusive).



      Output:



      Following M lines contains sum of boudaries of good ranges.



      Note:



      Range can consist of single element and represented as (x-x) where boundary sum will be x+x.



      Example:



      Input:




      10 4 
      2
      5
      7
      9



      Output:




      11 
      18
      30
      46



      Explaination:




      step-1) set: 2 
      good range: (1-10)
      sum: 1+10=11

      step-2) set: 2 5
      good range: (1-4), (3-10)
      sum: 1+4+3+10=18

      step-3) set: 2 5 7
      good range: (1-4), (3-6), (6-10)
      sum: 1+4+3+6+6+10=30

      step-4) set: 2 5 7 9
      good range: (1-4), (3-6), (6-8), (8-10)
      sum: 1+4+3+6+6+8+8+10=46


      #include <iostream>
      #include <set>
      using namespace std;

      class Solution

      public:
      Solution(const unsigned int _N, const unsigned int _M) : N(_N), M(_M)


      void solve()

      for(unsigned int i=0; i<M; ++i)

      unsigned int v;
      cin >> v;
      cout << "New Element = " << v << endl;
      q.insert(v);
      print_res();
      cout << endl;



      void print_res()

      unsigned int left=1;
      auto it=q.begin();
      unsigned int last = *it;

      for(++it; it!=q.end(); ++it)

      const unsigned int curr = *it;
      const unsigned int right = curr-1;
      cout << "[" << left << ", "<< right << "] contains " << last << " and sum = " << (left+right) << endl;
      left = last+1;
      last = curr;

      const unsigned right = N;
      cout << "[" << left << ", "<< right << "] contains " << last << " and sum = " << (left+right) << endl;


      private:
      unsigned int N;
      unsigned int M;
      set<unsigned int> q;
      ;


      int main()
      // your code goes here
      unsigned int N=0;
      unsigned int M=0;
      cin >> N >> M;
      Solution sol(N,M);
      sol.solve();
      return 0;




      Note: I am aware I'm returning more information than required by the problem description but I have chosen to do it to include also debugging information










      share|improve this question











      $endgroup$




      This my solution to this Good Range Coding Challenge




      There is a number space given from 1 to N. And there are M queries followed by that. In each query, we were given a number between 1 to N (both inclusive). We add these number one by one into a set.



      Good range: A range in which there is exactly one element present from the set.



      For each query, we need to find the good ranges. We need to return the sum of boundry of all good ranges.



      Input:



      First line will take two integer for input N and M.
      Then following m lines would be numbers between 1 and N (both inclusive).



      Output:



      Following M lines contains sum of boudaries of good ranges.



      Note:



      Range can consist of single element and represented as (x-x) where boundary sum will be x+x.



      Example:



      Input:




      10 4 
      2
      5
      7
      9



      Output:




      11 
      18
      30
      46



      Explaination:




      step-1) set: 2 
      good range: (1-10)
      sum: 1+10=11

      step-2) set: 2 5
      good range: (1-4), (3-10)
      sum: 1+4+3+10=18

      step-3) set: 2 5 7
      good range: (1-4), (3-6), (6-10)
      sum: 1+4+3+6+6+10=30

      step-4) set: 2 5 7 9
      good range: (1-4), (3-6), (6-8), (8-10)
      sum: 1+4+3+6+6+8+8+10=46


      #include <iostream>
      #include <set>
      using namespace std;

      class Solution

      public:
      Solution(const unsigned int _N, const unsigned int _M) : N(_N), M(_M)


      void solve()

      for(unsigned int i=0; i<M; ++i)

      unsigned int v;
      cin >> v;
      cout << "New Element = " << v << endl;
      q.insert(v);
      print_res();
      cout << endl;



      void print_res()

      unsigned int left=1;
      auto it=q.begin();
      unsigned int last = *it;

      for(++it; it!=q.end(); ++it)

      const unsigned int curr = *it;
      const unsigned int right = curr-1;
      cout << "[" << left << ", "<< right << "] contains " << last << " and sum = " << (left+right) << endl;
      left = last+1;
      last = curr;

      const unsigned right = N;
      cout << "[" << left << ", "<< right << "] contains " << last << " and sum = " << (left+right) << endl;


      private:
      unsigned int N;
      unsigned int M;
      set<unsigned int> q;
      ;


      int main()
      // your code goes here
      unsigned int N=0;
      unsigned int M=0;
      cin >> N >> M;
      Solution sol(N,M);
      sol.solve();
      return 0;




      Note: I am aware I'm returning more information than required by the problem description but I have chosen to do it to include also debugging information







      c++ programming-challenge interval






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited 7 hours ago









      Harald Scheirich

      1,434518




      1,434518










      asked 8 hours ago









      Nicola BerniniNicola Bernini

      1726




      1726




















          2 Answers
          2






          active

          oldest

          votes


















          4












          $begingroup$

          1. Don't force a class where a function is perfectly fine.


          2. The namespace std is not designed for wholesale importation, see "Why is “using namespace std” considered bad practice?" for more detail.


          3. Identifiers starting with an underscore followed by an uppercase letter are reserved.


          4. Input is generally unreliable. But you don't test for error at all.


          5. Always recomputing the current result from first principles, instead of just updating it with the newest addition, is a waste of time.


          6. Flushing is expensive, so avoid std::endl and explicitly request it with std::flush where unavoidable.


          7. You should probably follow the requested output-format...


          8. You know that int in unsigned int is implicit?


          9. In C++ and C99+, return 0; is implicit for main().


          10. I wonder why you sometimes surround binary operators with space, and sometimes don't.


          11. Having over-long lines is very cumbersome to read. Admittedly, you need not make a hard cut at 79 nowadays.


          12. As it is an interview question, one should verify that one should really use a Set, meaning that repeated elements have no effect, aside from causing an additional output.


          13. As it is an interview question, one should verify that, contrary to the example, the inputs might not be sorted.


          #include <cstdlib>
          #include <iostream>
          #include <set>

          int main()





          share|improve this answer











          $endgroup$




















            3












            $begingroup$

            No comments on the algorithm itself. But I have many style improvements a interviewer probably looks for.



            int main() 
            ...
            return 0;



            Unlike in C the statement return 0 is automatically generated for main. So its common to omit it.



            then this line in the main is problematic as well:



            unsigned int N = 0;
            unsigned int M = 0;
            cin >> N >> M;


            You expect you get an unsigned integer from the input. But who says the user types it?



            You should better read in as std::string and convert the result to integer after if possible:



            for (;;) 
            std::string input;
            std::cin >> input;

            if (is_convertible_to_integer(input)) // write a function to check if is convertible to unsigned int
            // convert to string
            break;




            This can be probably in a function as well like unsigned int read_unsigend_int();



            Then a classic mistake in C++. Don't use using namespace std. It is not a good habit. Read about it here: https://stackoverflow.com/questions/1452721/why-is-using-namespace-std-considered-bad-practice.



            The next thing I wonder. Do you really need unsigned int? Often it is not worth the hassle. It can introduce hard to spot errors: https://stackoverflow.com/questions/22587451/c-c-use-of-int-or-unsigned-int



            Then you create a class just for solving basically some computations. In this case I think its over-engineering. It could be simply solved by using free standing functions.
            Unlike in some other Programming languages where everything is a class you can just use free standing functions.



            However it is a good idea to wrap your functions and classes in its own namespace to prevent name clashes. So do something like:



            namespace good_range 

            // youre functions and classes



            Another small thing:



            Solution(const unsigned int _N, const unsigned int _M) : N(_N), M(_M) 


            No need to use const here since you have the values by value copied anyway.



            Also you should not use std::endl for a newline. I even saw it in many wrong books. std::endl gives you a newline and an expensive flushing operation of the buffer. Instead just use n.



            A opinion based thing. This line:



             cout << "[" << left << ", " << right << "] contains " << last << " and sum = " << (left + right) << endl;


            I would split it into two:



             cout << "[" << left << ", " << right << "] contains " << last 
            << " and sum = " << (left + right) << endl;


            why? It is easier to read and you have the option to open two source files on one screen next to each other. I personally stick usually with 80 spaces per line. But some people user 100 or 120. To see a discussion about it:



            https://stackoverflow.com/questions/276022/line-width-formatting-standard






            share|improve this answer











            $endgroup$












            • $begingroup$
              Thanks for your feedback I appreciate all the comments make sense but let me say here my focus was on solving the algorithmic challenge so I have not paid much attention to good practices
              $endgroup$
              – Nicola Bernini
              7 hours ago










            • $begingroup$
              im sorry i don't have the time at the moment to check the algorithm. But I still wanted to contribute the style stuff I could spot right away. I think is alway important to write a good style. It shows youre professionalism.
              $endgroup$
              – Sandro4912
              7 hours ago






            • 2




              $begingroup$
              @NicolaBernini Hint: do not compute the sum from scratch every time; each insertion affects at most two ranges, and the sum can be updated in a constant time.
              $endgroup$
              – vnp
              6 hours ago











            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%2f221289%2fcoding-challenge-solution-good-range%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









            4












            $begingroup$

            1. Don't force a class where a function is perfectly fine.


            2. The namespace std is not designed for wholesale importation, see "Why is “using namespace std” considered bad practice?" for more detail.


            3. Identifiers starting with an underscore followed by an uppercase letter are reserved.


            4. Input is generally unreliable. But you don't test for error at all.


            5. Always recomputing the current result from first principles, instead of just updating it with the newest addition, is a waste of time.


            6. Flushing is expensive, so avoid std::endl and explicitly request it with std::flush where unavoidable.


            7. You should probably follow the requested output-format...


            8. You know that int in unsigned int is implicit?


            9. In C++ and C99+, return 0; is implicit for main().


            10. I wonder why you sometimes surround binary operators with space, and sometimes don't.


            11. Having over-long lines is very cumbersome to read. Admittedly, you need not make a hard cut at 79 nowadays.


            12. As it is an interview question, one should verify that one should really use a Set, meaning that repeated elements have no effect, aside from causing an additional output.


            13. As it is an interview question, one should verify that, contrary to the example, the inputs might not be sorted.


            #include <cstdlib>
            #include <iostream>
            #include <set>

            int main()





            share|improve this answer











            $endgroup$

















              4












              $begingroup$

              1. Don't force a class where a function is perfectly fine.


              2. The namespace std is not designed for wholesale importation, see "Why is “using namespace std” considered bad practice?" for more detail.


              3. Identifiers starting with an underscore followed by an uppercase letter are reserved.


              4. Input is generally unreliable. But you don't test for error at all.


              5. Always recomputing the current result from first principles, instead of just updating it with the newest addition, is a waste of time.


              6. Flushing is expensive, so avoid std::endl and explicitly request it with std::flush where unavoidable.


              7. You should probably follow the requested output-format...


              8. You know that int in unsigned int is implicit?


              9. In C++ and C99+, return 0; is implicit for main().


              10. I wonder why you sometimes surround binary operators with space, and sometimes don't.


              11. Having over-long lines is very cumbersome to read. Admittedly, you need not make a hard cut at 79 nowadays.


              12. As it is an interview question, one should verify that one should really use a Set, meaning that repeated elements have no effect, aside from causing an additional output.


              13. As it is an interview question, one should verify that, contrary to the example, the inputs might not be sorted.


              #include <cstdlib>
              #include <iostream>
              #include <set>

              int main()





              share|improve this answer











              $endgroup$















                4












                4








                4





                $begingroup$

                1. Don't force a class where a function is perfectly fine.


                2. The namespace std is not designed for wholesale importation, see "Why is “using namespace std” considered bad practice?" for more detail.


                3. Identifiers starting with an underscore followed by an uppercase letter are reserved.


                4. Input is generally unreliable. But you don't test for error at all.


                5. Always recomputing the current result from first principles, instead of just updating it with the newest addition, is a waste of time.


                6. Flushing is expensive, so avoid std::endl and explicitly request it with std::flush where unavoidable.


                7. You should probably follow the requested output-format...


                8. You know that int in unsigned int is implicit?


                9. In C++ and C99+, return 0; is implicit for main().


                10. I wonder why you sometimes surround binary operators with space, and sometimes don't.


                11. Having over-long lines is very cumbersome to read. Admittedly, you need not make a hard cut at 79 nowadays.


                12. As it is an interview question, one should verify that one should really use a Set, meaning that repeated elements have no effect, aside from causing an additional output.


                13. As it is an interview question, one should verify that, contrary to the example, the inputs might not be sorted.


                #include <cstdlib>
                #include <iostream>
                #include <set>

                int main()





                share|improve this answer











                $endgroup$



                1. Don't force a class where a function is perfectly fine.


                2. The namespace std is not designed for wholesale importation, see "Why is “using namespace std” considered bad practice?" for more detail.


                3. Identifiers starting with an underscore followed by an uppercase letter are reserved.


                4. Input is generally unreliable. But you don't test for error at all.


                5. Always recomputing the current result from first principles, instead of just updating it with the newest addition, is a waste of time.


                6. Flushing is expensive, so avoid std::endl and explicitly request it with std::flush where unavoidable.


                7. You should probably follow the requested output-format...


                8. You know that int in unsigned int is implicit?


                9. In C++ and C99+, return 0; is implicit for main().


                10. I wonder why you sometimes surround binary operators with space, and sometimes don't.


                11. Having over-long lines is very cumbersome to read. Admittedly, you need not make a hard cut at 79 nowadays.


                12. As it is an interview question, one should verify that one should really use a Set, meaning that repeated elements have no effect, aside from causing an additional output.


                13. As it is an interview question, one should verify that, contrary to the example, the inputs might not be sorted.


                #include <cstdlib>
                #include <iostream>
                #include <set>

                int main()






                share|improve this answer














                share|improve this answer



                share|improve this answer








                edited 4 hours ago

























                answered 6 hours ago









                DeduplicatorDeduplicator

                12.5k2052




                12.5k2052























                    3












                    $begingroup$

                    No comments on the algorithm itself. But I have many style improvements a interviewer probably looks for.



                    int main() 
                    ...
                    return 0;



                    Unlike in C the statement return 0 is automatically generated for main. So its common to omit it.



                    then this line in the main is problematic as well:



                    unsigned int N = 0;
                    unsigned int M = 0;
                    cin >> N >> M;


                    You expect you get an unsigned integer from the input. But who says the user types it?



                    You should better read in as std::string and convert the result to integer after if possible:



                    for (;;) 
                    std::string input;
                    std::cin >> input;

                    if (is_convertible_to_integer(input)) // write a function to check if is convertible to unsigned int
                    // convert to string
                    break;




                    This can be probably in a function as well like unsigned int read_unsigend_int();



                    Then a classic mistake in C++. Don't use using namespace std. It is not a good habit. Read about it here: https://stackoverflow.com/questions/1452721/why-is-using-namespace-std-considered-bad-practice.



                    The next thing I wonder. Do you really need unsigned int? Often it is not worth the hassle. It can introduce hard to spot errors: https://stackoverflow.com/questions/22587451/c-c-use-of-int-or-unsigned-int



                    Then you create a class just for solving basically some computations. In this case I think its over-engineering. It could be simply solved by using free standing functions.
                    Unlike in some other Programming languages where everything is a class you can just use free standing functions.



                    However it is a good idea to wrap your functions and classes in its own namespace to prevent name clashes. So do something like:



                    namespace good_range 

                    // youre functions and classes



                    Another small thing:



                    Solution(const unsigned int _N, const unsigned int _M) : N(_N), M(_M) 


                    No need to use const here since you have the values by value copied anyway.



                    Also you should not use std::endl for a newline. I even saw it in many wrong books. std::endl gives you a newline and an expensive flushing operation of the buffer. Instead just use n.



                    A opinion based thing. This line:



                     cout << "[" << left << ", " << right << "] contains " << last << " and sum = " << (left + right) << endl;


                    I would split it into two:



                     cout << "[" << left << ", " << right << "] contains " << last 
                    << " and sum = " << (left + right) << endl;


                    why? It is easier to read and you have the option to open two source files on one screen next to each other. I personally stick usually with 80 spaces per line. But some people user 100 or 120. To see a discussion about it:



                    https://stackoverflow.com/questions/276022/line-width-formatting-standard






                    share|improve this answer











                    $endgroup$












                    • $begingroup$
                      Thanks for your feedback I appreciate all the comments make sense but let me say here my focus was on solving the algorithmic challenge so I have not paid much attention to good practices
                      $endgroup$
                      – Nicola Bernini
                      7 hours ago










                    • $begingroup$
                      im sorry i don't have the time at the moment to check the algorithm. But I still wanted to contribute the style stuff I could spot right away. I think is alway important to write a good style. It shows youre professionalism.
                      $endgroup$
                      – Sandro4912
                      7 hours ago






                    • 2




                      $begingroup$
                      @NicolaBernini Hint: do not compute the sum from scratch every time; each insertion affects at most two ranges, and the sum can be updated in a constant time.
                      $endgroup$
                      – vnp
                      6 hours ago















                    3












                    $begingroup$

                    No comments on the algorithm itself. But I have many style improvements a interviewer probably looks for.



                    int main() 
                    ...
                    return 0;



                    Unlike in C the statement return 0 is automatically generated for main. So its common to omit it.



                    then this line in the main is problematic as well:



                    unsigned int N = 0;
                    unsigned int M = 0;
                    cin >> N >> M;


                    You expect you get an unsigned integer from the input. But who says the user types it?



                    You should better read in as std::string and convert the result to integer after if possible:



                    for (;;) 
                    std::string input;
                    std::cin >> input;

                    if (is_convertible_to_integer(input)) // write a function to check if is convertible to unsigned int
                    // convert to string
                    break;




                    This can be probably in a function as well like unsigned int read_unsigend_int();



                    Then a classic mistake in C++. Don't use using namespace std. It is not a good habit. Read about it here: https://stackoverflow.com/questions/1452721/why-is-using-namespace-std-considered-bad-practice.



                    The next thing I wonder. Do you really need unsigned int? Often it is not worth the hassle. It can introduce hard to spot errors: https://stackoverflow.com/questions/22587451/c-c-use-of-int-or-unsigned-int



                    Then you create a class just for solving basically some computations. In this case I think its over-engineering. It could be simply solved by using free standing functions.
                    Unlike in some other Programming languages where everything is a class you can just use free standing functions.



                    However it is a good idea to wrap your functions and classes in its own namespace to prevent name clashes. So do something like:



                    namespace good_range 

                    // youre functions and classes



                    Another small thing:



                    Solution(const unsigned int _N, const unsigned int _M) : N(_N), M(_M) 


                    No need to use const here since you have the values by value copied anyway.



                    Also you should not use std::endl for a newline. I even saw it in many wrong books. std::endl gives you a newline and an expensive flushing operation of the buffer. Instead just use n.



                    A opinion based thing. This line:



                     cout << "[" << left << ", " << right << "] contains " << last << " and sum = " << (left + right) << endl;


                    I would split it into two:



                     cout << "[" << left << ", " << right << "] contains " << last 
                    << " and sum = " << (left + right) << endl;


                    why? It is easier to read and you have the option to open two source files on one screen next to each other. I personally stick usually with 80 spaces per line. But some people user 100 or 120. To see a discussion about it:



                    https://stackoverflow.com/questions/276022/line-width-formatting-standard






                    share|improve this answer











                    $endgroup$












                    • $begingroup$
                      Thanks for your feedback I appreciate all the comments make sense but let me say here my focus was on solving the algorithmic challenge so I have not paid much attention to good practices
                      $endgroup$
                      – Nicola Bernini
                      7 hours ago










                    • $begingroup$
                      im sorry i don't have the time at the moment to check the algorithm. But I still wanted to contribute the style stuff I could spot right away. I think is alway important to write a good style. It shows youre professionalism.
                      $endgroup$
                      – Sandro4912
                      7 hours ago






                    • 2




                      $begingroup$
                      @NicolaBernini Hint: do not compute the sum from scratch every time; each insertion affects at most two ranges, and the sum can be updated in a constant time.
                      $endgroup$
                      – vnp
                      6 hours ago













                    3












                    3








                    3





                    $begingroup$

                    No comments on the algorithm itself. But I have many style improvements a interviewer probably looks for.



                    int main() 
                    ...
                    return 0;



                    Unlike in C the statement return 0 is automatically generated for main. So its common to omit it.



                    then this line in the main is problematic as well:



                    unsigned int N = 0;
                    unsigned int M = 0;
                    cin >> N >> M;


                    You expect you get an unsigned integer from the input. But who says the user types it?



                    You should better read in as std::string and convert the result to integer after if possible:



                    for (;;) 
                    std::string input;
                    std::cin >> input;

                    if (is_convertible_to_integer(input)) // write a function to check if is convertible to unsigned int
                    // convert to string
                    break;




                    This can be probably in a function as well like unsigned int read_unsigend_int();



                    Then a classic mistake in C++. Don't use using namespace std. It is not a good habit. Read about it here: https://stackoverflow.com/questions/1452721/why-is-using-namespace-std-considered-bad-practice.



                    The next thing I wonder. Do you really need unsigned int? Often it is not worth the hassle. It can introduce hard to spot errors: https://stackoverflow.com/questions/22587451/c-c-use-of-int-or-unsigned-int



                    Then you create a class just for solving basically some computations. In this case I think its over-engineering. It could be simply solved by using free standing functions.
                    Unlike in some other Programming languages where everything is a class you can just use free standing functions.



                    However it is a good idea to wrap your functions and classes in its own namespace to prevent name clashes. So do something like:



                    namespace good_range 

                    // youre functions and classes



                    Another small thing:



                    Solution(const unsigned int _N, const unsigned int _M) : N(_N), M(_M) 


                    No need to use const here since you have the values by value copied anyway.



                    Also you should not use std::endl for a newline. I even saw it in many wrong books. std::endl gives you a newline and an expensive flushing operation of the buffer. Instead just use n.



                    A opinion based thing. This line:



                     cout << "[" << left << ", " << right << "] contains " << last << " and sum = " << (left + right) << endl;


                    I would split it into two:



                     cout << "[" << left << ", " << right << "] contains " << last 
                    << " and sum = " << (left + right) << endl;


                    why? It is easier to read and you have the option to open two source files on one screen next to each other. I personally stick usually with 80 spaces per line. But some people user 100 or 120. To see a discussion about it:



                    https://stackoverflow.com/questions/276022/line-width-formatting-standard






                    share|improve this answer











                    $endgroup$



                    No comments on the algorithm itself. But I have many style improvements a interviewer probably looks for.



                    int main() 
                    ...
                    return 0;



                    Unlike in C the statement return 0 is automatically generated for main. So its common to omit it.



                    then this line in the main is problematic as well:



                    unsigned int N = 0;
                    unsigned int M = 0;
                    cin >> N >> M;


                    You expect you get an unsigned integer from the input. But who says the user types it?



                    You should better read in as std::string and convert the result to integer after if possible:



                    for (;;) 
                    std::string input;
                    std::cin >> input;

                    if (is_convertible_to_integer(input)) // write a function to check if is convertible to unsigned int
                    // convert to string
                    break;




                    This can be probably in a function as well like unsigned int read_unsigend_int();



                    Then a classic mistake in C++. Don't use using namespace std. It is not a good habit. Read about it here: https://stackoverflow.com/questions/1452721/why-is-using-namespace-std-considered-bad-practice.



                    The next thing I wonder. Do you really need unsigned int? Often it is not worth the hassle. It can introduce hard to spot errors: https://stackoverflow.com/questions/22587451/c-c-use-of-int-or-unsigned-int



                    Then you create a class just for solving basically some computations. In this case I think its over-engineering. It could be simply solved by using free standing functions.
                    Unlike in some other Programming languages where everything is a class you can just use free standing functions.



                    However it is a good idea to wrap your functions and classes in its own namespace to prevent name clashes. So do something like:



                    namespace good_range 

                    // youre functions and classes



                    Another small thing:



                    Solution(const unsigned int _N, const unsigned int _M) : N(_N), M(_M) 


                    No need to use const here since you have the values by value copied anyway.



                    Also you should not use std::endl for a newline. I even saw it in many wrong books. std::endl gives you a newline and an expensive flushing operation of the buffer. Instead just use n.



                    A opinion based thing. This line:



                     cout << "[" << left << ", " << right << "] contains " << last << " and sum = " << (left + right) << endl;


                    I would split it into two:



                     cout << "[" << left << ", " << right << "] contains " << last 
                    << " and sum = " << (left + right) << endl;


                    why? It is easier to read and you have the option to open two source files on one screen next to each other. I personally stick usually with 80 spaces per line. But some people user 100 or 120. To see a discussion about it:



                    https://stackoverflow.com/questions/276022/line-width-formatting-standard







                    share|improve this answer














                    share|improve this answer



                    share|improve this answer








                    edited 6 hours ago









                    Jerry Coffin

                    28.9k462130




                    28.9k462130










                    answered 7 hours ago









                    Sandro4912Sandro4912

                    1,5391426




                    1,5391426











                    • $begingroup$
                      Thanks for your feedback I appreciate all the comments make sense but let me say here my focus was on solving the algorithmic challenge so I have not paid much attention to good practices
                      $endgroup$
                      – Nicola Bernini
                      7 hours ago










                    • $begingroup$
                      im sorry i don't have the time at the moment to check the algorithm. But I still wanted to contribute the style stuff I could spot right away. I think is alway important to write a good style. It shows youre professionalism.
                      $endgroup$
                      – Sandro4912
                      7 hours ago






                    • 2




                      $begingroup$
                      @NicolaBernini Hint: do not compute the sum from scratch every time; each insertion affects at most two ranges, and the sum can be updated in a constant time.
                      $endgroup$
                      – vnp
                      6 hours ago
















                    • $begingroup$
                      Thanks for your feedback I appreciate all the comments make sense but let me say here my focus was on solving the algorithmic challenge so I have not paid much attention to good practices
                      $endgroup$
                      – Nicola Bernini
                      7 hours ago










                    • $begingroup$
                      im sorry i don't have the time at the moment to check the algorithm. But I still wanted to contribute the style stuff I could spot right away. I think is alway important to write a good style. It shows youre professionalism.
                      $endgroup$
                      – Sandro4912
                      7 hours ago






                    • 2




                      $begingroup$
                      @NicolaBernini Hint: do not compute the sum from scratch every time; each insertion affects at most two ranges, and the sum can be updated in a constant time.
                      $endgroup$
                      – vnp
                      6 hours ago















                    $begingroup$
                    Thanks for your feedback I appreciate all the comments make sense but let me say here my focus was on solving the algorithmic challenge so I have not paid much attention to good practices
                    $endgroup$
                    – Nicola Bernini
                    7 hours ago




                    $begingroup$
                    Thanks for your feedback I appreciate all the comments make sense but let me say here my focus was on solving the algorithmic challenge so I have not paid much attention to good practices
                    $endgroup$
                    – Nicola Bernini
                    7 hours ago












                    $begingroup$
                    im sorry i don't have the time at the moment to check the algorithm. But I still wanted to contribute the style stuff I could spot right away. I think is alway important to write a good style. It shows youre professionalism.
                    $endgroup$
                    – Sandro4912
                    7 hours ago




                    $begingroup$
                    im sorry i don't have the time at the moment to check the algorithm. But I still wanted to contribute the style stuff I could spot right away. I think is alway important to write a good style. It shows youre professionalism.
                    $endgroup$
                    – Sandro4912
                    7 hours ago




                    2




                    2




                    $begingroup$
                    @NicolaBernini Hint: do not compute the sum from scratch every time; each insertion affects at most two ranges, and the sum can be updated in a constant time.
                    $endgroup$
                    – vnp
                    6 hours ago




                    $begingroup$
                    @NicolaBernini Hint: do not compute the sum from scratch every time; each insertion affects at most two ranges, and the sum can be updated in a constant time.
                    $endgroup$
                    – vnp
                    6 hours ago

















                    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%2f221289%2fcoding-challenge-solution-good-range%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