Extract rows of a table, that include less than x NULLsWhat do these statements mean in the MS β exam 70-461 “skills measured” list?SQL SERVER 2008 TVF OR CHARINDEX to search column with commaHow can I do a differential query (delta plus/minus) telling me what rows are in view A that are not in view B and vice versa?Unique constraint on multiple nullable columns Sql ServerHow do I include nulls during comparisons in SQL Server?How do I include nulls during comparisons in SQLServer?I can't save Database DiagramsRecompile not working for DELETE statementPerformance gap between WHERE IN (1,2,3,4) vs IN (select * from STRING_SPLIT('1,2,3,4',','))Stored procedure or Table Function doesn't return value when parsing XML

Is there an expression that means doing something right before you will need it rather than doing it in case you might need it?

Which is the best way to check return result?

Extract rows of a table, that include less than x NULLs

What type of content (depth/breadth) is expected for a short presentation for Asst Professor interview in the UK?

Why can't we play rap on piano?

Is "remove commented out code" correct English?

Is it logically or scientifically possible to artificially send energy to the body?

What killed these X2 caps?

Can compressed videos be decoded back to their uncompresed original format?

What's the in-universe reasoning behind sorcerers needing material components?

What are some good books on Machine Learning and AI like Krugman, Wells and Graddy's "Essentials of Economics"

Could the museum Saturn V's be refitted for one more flight?

Alternative to sending password over mail?

Forgetting the musical notes while performing in concert

Expand and Contract

Detention in 1997

Why is it a bad idea to hire a hitman to eliminate most corrupt politicians?

Should I tell management that I intend to leave due to bad software development practices?

Bullying boss launched a smear campaign and made me unemployable

How much of data wrangling is a data scientist's job?

Different meanings of こわい

Would Slavery Reparations be considered Bills of Attainder and hence Illegal?

Is it possible to create a QR code using text?

Madden-Julian Oscillation (MJO) - How to interpret the index?



Extract rows of a table, that include less than x NULLs


What do these statements mean in the MS β exam 70-461 “skills measured” list?SQL SERVER 2008 TVF OR CHARINDEX to search column with commaHow can I do a differential query (delta plus/minus) telling me what rows are in view A that are not in view B and vice versa?Unique constraint on multiple nullable columns Sql ServerHow do I include nulls during comparisons in SQL Server?How do I include nulls during comparisons in SQLServer?I can't save Database DiagramsRecompile not working for DELETE statementPerformance gap between WHERE IN (1,2,3,4) vs IN (select * from STRING_SPLIT('1,2,3,4',','))Stored procedure or Table Function doesn't return value when parsing XML













1















I am working with a SQL Server database, which includes a lot of NULLs.
To analyse my data, I want to extract all rows of the database table, that include less than x NULL marks (e.g. x=2).



My database is similar to this structure:



 c1 c2 c3 c4 c5 
-----------------------------------------------------
2 3 NULL 1 2
2 NULL NULL 1 2
2 3 NULL NULL 2
NULL 3 NULL 1 NULL
2 3 NULL 1 2


I tried the query, which doesn't return an error, but no rows are selected:



SELECT * FROM test123 
WHERE ((ISNULL(c1,1) + ISNULL(c2,1) + ISNULL(c3,1) + ISNULL(c4,1) + ISNULL(c5,1)) < 2);


I expect this query to return the 1st and the fifth row, but the result contains 0 rows.




I can't test the following code, because I don't have the rights to write on the database, but here is a (pseudo-) code for creating a table like mine:



CREATE TABLE test123(
c1 float,
c2 float,
c3 float,
c4 float,
c5 float
) GO
INSERT test123(c1,c2,c3,c4,c5)
VALUES (2,3,NULL,1,2),
(2,NULL,NULL,1,2),
(2,3,NULL,NULL,2),
(NULL,3,NULL,1,NULL),
(2,3,NULL,1,2);









share|improve this question









New contributor




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
























    1















    I am working with a SQL Server database, which includes a lot of NULLs.
    To analyse my data, I want to extract all rows of the database table, that include less than x NULL marks (e.g. x=2).



    My database is similar to this structure:



     c1 c2 c3 c4 c5 
    -----------------------------------------------------
    2 3 NULL 1 2
    2 NULL NULL 1 2
    2 3 NULL NULL 2
    NULL 3 NULL 1 NULL
    2 3 NULL 1 2


    I tried the query, which doesn't return an error, but no rows are selected:



    SELECT * FROM test123 
    WHERE ((ISNULL(c1,1) + ISNULL(c2,1) + ISNULL(c3,1) + ISNULL(c4,1) + ISNULL(c5,1)) < 2);


    I expect this query to return the 1st and the fifth row, but the result contains 0 rows.




    I can't test the following code, because I don't have the rights to write on the database, but here is a (pseudo-) code for creating a table like mine:



    CREATE TABLE test123(
    c1 float,
    c2 float,
    c3 float,
    c4 float,
    c5 float
    ) GO
    INSERT test123(c1,c2,c3,c4,c5)
    VALUES (2,3,NULL,1,2),
    (2,NULL,NULL,1,2),
    (2,3,NULL,NULL,2),
    (NULL,3,NULL,1,NULL),
    (2,3,NULL,1,2);









    share|improve this question









    New contributor




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






















      1












      1








      1


      0






      I am working with a SQL Server database, which includes a lot of NULLs.
      To analyse my data, I want to extract all rows of the database table, that include less than x NULL marks (e.g. x=2).



      My database is similar to this structure:



       c1 c2 c3 c4 c5 
      -----------------------------------------------------
      2 3 NULL 1 2
      2 NULL NULL 1 2
      2 3 NULL NULL 2
      NULL 3 NULL 1 NULL
      2 3 NULL 1 2


      I tried the query, which doesn't return an error, but no rows are selected:



      SELECT * FROM test123 
      WHERE ((ISNULL(c1,1) + ISNULL(c2,1) + ISNULL(c3,1) + ISNULL(c4,1) + ISNULL(c5,1)) < 2);


      I expect this query to return the 1st and the fifth row, but the result contains 0 rows.




      I can't test the following code, because I don't have the rights to write on the database, but here is a (pseudo-) code for creating a table like mine:



      CREATE TABLE test123(
      c1 float,
      c2 float,
      c3 float,
      c4 float,
      c5 float
      ) GO
      INSERT test123(c1,c2,c3,c4,c5)
      VALUES (2,3,NULL,1,2),
      (2,NULL,NULL,1,2),
      (2,3,NULL,NULL,2),
      (NULL,3,NULL,1,NULL),
      (2,3,NULL,1,2);









      share|improve this question









      New contributor




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












      I am working with a SQL Server database, which includes a lot of NULLs.
      To analyse my data, I want to extract all rows of the database table, that include less than x NULL marks (e.g. x=2).



      My database is similar to this structure:



       c1 c2 c3 c4 c5 
      -----------------------------------------------------
      2 3 NULL 1 2
      2 NULL NULL 1 2
      2 3 NULL NULL 2
      NULL 3 NULL 1 NULL
      2 3 NULL 1 2


      I tried the query, which doesn't return an error, but no rows are selected:



      SELECT * FROM test123 
      WHERE ((ISNULL(c1,1) + ISNULL(c2,1) + ISNULL(c3,1) + ISNULL(c4,1) + ISNULL(c5,1)) < 2);


      I expect this query to return the 1st and the fifth row, but the result contains 0 rows.




      I can't test the following code, because I don't have the rights to write on the database, but here is a (pseudo-) code for creating a table like mine:



      CREATE TABLE test123(
      c1 float,
      c2 float,
      c3 float,
      c4 float,
      c5 float
      ) GO
      INSERT test123(c1,c2,c3,c4,c5)
      VALUES (2,3,NULL,1,2),
      (2,NULL,NULL,1,2),
      (2,3,NULL,NULL,2),
      (NULL,3,NULL,1,NULL),
      (2,3,NULL,1,2);






      sql-server query isnull






      share|improve this question









      New contributor




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











      share|improve this question









      New contributor




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









      share|improve this question




      share|improve this question








      edited 1 hour ago









      MDCCL

      6,85331745




      6,85331745






      New contributor




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









      asked 4 hours ago









      sqlNewiesqlNewie

      102




      102




      New contributor




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





      New contributor





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






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




















          2 Answers
          2






          active

          oldest

          votes


















          2














          You should use a case statement like this:



          SELECT * 
          FROM test123
          WHERE (
          (CASE WHEN C1 IS NULL THEN 1 ELSE 0 END +
          CASE WHEN C2 IS NULL THEN 1 ELSE 0 END +
          CASE WHEN C3 IS NULL THEN 1 ELSE 0 END +
          CASE WHEN C4 IS NULL THEN 1 ELSE 0 END +
          CASE WHEN C5 IS NULL THEN 1 ELSE 0 END)
          < 2);


          The ISNULL approach is returning your actual values when the value isn't NULL, which pushes all of the rows over the 2 mark.






          share|improve this answer






























            2














            Permissions to create a table in the current database shouldn't preclude you from creating one you can work with. You can just create a #temp table:



            CREATE TABLE #test123(
            c1 float,
            c2 float,
            c3 float,
            c4 float,
            c5 float
            );

            INSERT #test123(c1,c2,c3,c4,c5);
            VALUES (2,3,NULL,1,2),
            (2,NULL,NULL,1,2),
            (2,3,NULL,NULL,2),
            (NULL,3,NULL,1,NULL),
            (2,3,NULL,1,2);


            To see why ISNULL isn't effective here, run this query:



            SELECT ISNULL(c1,1), ISNULL(c2,1), ISNULL(c3,1), ISNULL(c4,1), ISNULL(c5,1)
            FROM #test123;


            You've given every column in every row a value. So now you're evaluating the SUM of inflated values, and erroneously evaluating a property of the actual value (what happens when one of the values is negative?), instead of evaluating the COUNT of values that either are NULL or are NOT NULL.



            It's more code but a simple way to address this is:



            SELECT * FROM #test123
            WHERE CASE WHEN c1 IS NULL THEN 1 ELSE 0 END
            + CASE WHEN c2 IS NULL THEN 1 ELSE 0 END
            + CASE WHEN c3 IS NULL THEN 1 ELSE 0 END
            + CASE WHEN c4 IS NULL THEN 1 ELSE 0 END
            + CASE WHEN c5 IS NULL THEN 1 ELSE 0 END < 2;





            share|improve this answer























            • Thank you a lot! The #temp table will help me a lot in the future:)!

              – sqlNewie
              4 hours ago











            Your Answer








            StackExchange.ready(function()
            var channelOptions =
            tags: "".split(" "),
            id: "182"
            ;
            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
            );



            );






            sqlNewie is a new contributor. Be nice, and check out our Code of Conduct.









            draft saved

            draft discarded


















            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fdba.stackexchange.com%2fquestions%2f233861%2fextract-rows-of-a-table-that-include-less-than-x-nulls%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














            You should use a case statement like this:



            SELECT * 
            FROM test123
            WHERE (
            (CASE WHEN C1 IS NULL THEN 1 ELSE 0 END +
            CASE WHEN C2 IS NULL THEN 1 ELSE 0 END +
            CASE WHEN C3 IS NULL THEN 1 ELSE 0 END +
            CASE WHEN C4 IS NULL THEN 1 ELSE 0 END +
            CASE WHEN C5 IS NULL THEN 1 ELSE 0 END)
            < 2);


            The ISNULL approach is returning your actual values when the value isn't NULL, which pushes all of the rows over the 2 mark.






            share|improve this answer



























              2














              You should use a case statement like this:



              SELECT * 
              FROM test123
              WHERE (
              (CASE WHEN C1 IS NULL THEN 1 ELSE 0 END +
              CASE WHEN C2 IS NULL THEN 1 ELSE 0 END +
              CASE WHEN C3 IS NULL THEN 1 ELSE 0 END +
              CASE WHEN C4 IS NULL THEN 1 ELSE 0 END +
              CASE WHEN C5 IS NULL THEN 1 ELSE 0 END)
              < 2);


              The ISNULL approach is returning your actual values when the value isn't NULL, which pushes all of the rows over the 2 mark.






              share|improve this answer

























                2












                2








                2







                You should use a case statement like this:



                SELECT * 
                FROM test123
                WHERE (
                (CASE WHEN C1 IS NULL THEN 1 ELSE 0 END +
                CASE WHEN C2 IS NULL THEN 1 ELSE 0 END +
                CASE WHEN C3 IS NULL THEN 1 ELSE 0 END +
                CASE WHEN C4 IS NULL THEN 1 ELSE 0 END +
                CASE WHEN C5 IS NULL THEN 1 ELSE 0 END)
                < 2);


                The ISNULL approach is returning your actual values when the value isn't NULL, which pushes all of the rows over the 2 mark.






                share|improve this answer













                You should use a case statement like this:



                SELECT * 
                FROM test123
                WHERE (
                (CASE WHEN C1 IS NULL THEN 1 ELSE 0 END +
                CASE WHEN C2 IS NULL THEN 1 ELSE 0 END +
                CASE WHEN C3 IS NULL THEN 1 ELSE 0 END +
                CASE WHEN C4 IS NULL THEN 1 ELSE 0 END +
                CASE WHEN C5 IS NULL THEN 1 ELSE 0 END)
                < 2);


                The ISNULL approach is returning your actual values when the value isn't NULL, which pushes all of the rows over the 2 mark.







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered 4 hours ago









                Josh DarnellJosh Darnell

                7,57022241




                7,57022241























                    2














                    Permissions to create a table in the current database shouldn't preclude you from creating one you can work with. You can just create a #temp table:



                    CREATE TABLE #test123(
                    c1 float,
                    c2 float,
                    c3 float,
                    c4 float,
                    c5 float
                    );

                    INSERT #test123(c1,c2,c3,c4,c5);
                    VALUES (2,3,NULL,1,2),
                    (2,NULL,NULL,1,2),
                    (2,3,NULL,NULL,2),
                    (NULL,3,NULL,1,NULL),
                    (2,3,NULL,1,2);


                    To see why ISNULL isn't effective here, run this query:



                    SELECT ISNULL(c1,1), ISNULL(c2,1), ISNULL(c3,1), ISNULL(c4,1), ISNULL(c5,1)
                    FROM #test123;


                    You've given every column in every row a value. So now you're evaluating the SUM of inflated values, and erroneously evaluating a property of the actual value (what happens when one of the values is negative?), instead of evaluating the COUNT of values that either are NULL or are NOT NULL.



                    It's more code but a simple way to address this is:



                    SELECT * FROM #test123
                    WHERE CASE WHEN c1 IS NULL THEN 1 ELSE 0 END
                    + CASE WHEN c2 IS NULL THEN 1 ELSE 0 END
                    + CASE WHEN c3 IS NULL THEN 1 ELSE 0 END
                    + CASE WHEN c4 IS NULL THEN 1 ELSE 0 END
                    + CASE WHEN c5 IS NULL THEN 1 ELSE 0 END < 2;





                    share|improve this answer























                    • Thank you a lot! The #temp table will help me a lot in the future:)!

                      – sqlNewie
                      4 hours ago















                    2














                    Permissions to create a table in the current database shouldn't preclude you from creating one you can work with. You can just create a #temp table:



                    CREATE TABLE #test123(
                    c1 float,
                    c2 float,
                    c3 float,
                    c4 float,
                    c5 float
                    );

                    INSERT #test123(c1,c2,c3,c4,c5);
                    VALUES (2,3,NULL,1,2),
                    (2,NULL,NULL,1,2),
                    (2,3,NULL,NULL,2),
                    (NULL,3,NULL,1,NULL),
                    (2,3,NULL,1,2);


                    To see why ISNULL isn't effective here, run this query:



                    SELECT ISNULL(c1,1), ISNULL(c2,1), ISNULL(c3,1), ISNULL(c4,1), ISNULL(c5,1)
                    FROM #test123;


                    You've given every column in every row a value. So now you're evaluating the SUM of inflated values, and erroneously evaluating a property of the actual value (what happens when one of the values is negative?), instead of evaluating the COUNT of values that either are NULL or are NOT NULL.



                    It's more code but a simple way to address this is:



                    SELECT * FROM #test123
                    WHERE CASE WHEN c1 IS NULL THEN 1 ELSE 0 END
                    + CASE WHEN c2 IS NULL THEN 1 ELSE 0 END
                    + CASE WHEN c3 IS NULL THEN 1 ELSE 0 END
                    + CASE WHEN c4 IS NULL THEN 1 ELSE 0 END
                    + CASE WHEN c5 IS NULL THEN 1 ELSE 0 END < 2;





                    share|improve this answer























                    • Thank you a lot! The #temp table will help me a lot in the future:)!

                      – sqlNewie
                      4 hours ago













                    2












                    2








                    2







                    Permissions to create a table in the current database shouldn't preclude you from creating one you can work with. You can just create a #temp table:



                    CREATE TABLE #test123(
                    c1 float,
                    c2 float,
                    c3 float,
                    c4 float,
                    c5 float
                    );

                    INSERT #test123(c1,c2,c3,c4,c5);
                    VALUES (2,3,NULL,1,2),
                    (2,NULL,NULL,1,2),
                    (2,3,NULL,NULL,2),
                    (NULL,3,NULL,1,NULL),
                    (2,3,NULL,1,2);


                    To see why ISNULL isn't effective here, run this query:



                    SELECT ISNULL(c1,1), ISNULL(c2,1), ISNULL(c3,1), ISNULL(c4,1), ISNULL(c5,1)
                    FROM #test123;


                    You've given every column in every row a value. So now you're evaluating the SUM of inflated values, and erroneously evaluating a property of the actual value (what happens when one of the values is negative?), instead of evaluating the COUNT of values that either are NULL or are NOT NULL.



                    It's more code but a simple way to address this is:



                    SELECT * FROM #test123
                    WHERE CASE WHEN c1 IS NULL THEN 1 ELSE 0 END
                    + CASE WHEN c2 IS NULL THEN 1 ELSE 0 END
                    + CASE WHEN c3 IS NULL THEN 1 ELSE 0 END
                    + CASE WHEN c4 IS NULL THEN 1 ELSE 0 END
                    + CASE WHEN c5 IS NULL THEN 1 ELSE 0 END < 2;





                    share|improve this answer













                    Permissions to create a table in the current database shouldn't preclude you from creating one you can work with. You can just create a #temp table:



                    CREATE TABLE #test123(
                    c1 float,
                    c2 float,
                    c3 float,
                    c4 float,
                    c5 float
                    );

                    INSERT #test123(c1,c2,c3,c4,c5);
                    VALUES (2,3,NULL,1,2),
                    (2,NULL,NULL,1,2),
                    (2,3,NULL,NULL,2),
                    (NULL,3,NULL,1,NULL),
                    (2,3,NULL,1,2);


                    To see why ISNULL isn't effective here, run this query:



                    SELECT ISNULL(c1,1), ISNULL(c2,1), ISNULL(c3,1), ISNULL(c4,1), ISNULL(c5,1)
                    FROM #test123;


                    You've given every column in every row a value. So now you're evaluating the SUM of inflated values, and erroneously evaluating a property of the actual value (what happens when one of the values is negative?), instead of evaluating the COUNT of values that either are NULL or are NOT NULL.



                    It's more code but a simple way to address this is:



                    SELECT * FROM #test123
                    WHERE CASE WHEN c1 IS NULL THEN 1 ELSE 0 END
                    + CASE WHEN c2 IS NULL THEN 1 ELSE 0 END
                    + CASE WHEN c3 IS NULL THEN 1 ELSE 0 END
                    + CASE WHEN c4 IS NULL THEN 1 ELSE 0 END
                    + CASE WHEN c5 IS NULL THEN 1 ELSE 0 END < 2;






                    share|improve this answer












                    share|improve this answer



                    share|improve this answer










                    answered 4 hours ago









                    Aaron BertrandAaron Bertrand

                    153k18298493




                    153k18298493












                    • Thank you a lot! The #temp table will help me a lot in the future:)!

                      – sqlNewie
                      4 hours ago

















                    • Thank you a lot! The #temp table will help me a lot in the future:)!

                      – sqlNewie
                      4 hours ago
















                    Thank you a lot! The #temp table will help me a lot in the future:)!

                    – sqlNewie
                    4 hours ago





                    Thank you a lot! The #temp table will help me a lot in the future:)!

                    – sqlNewie
                    4 hours ago










                    sqlNewie is a new contributor. Be nice, and check out our Code of Conduct.









                    draft saved

                    draft discarded


















                    sqlNewie is a new contributor. Be nice, and check out our Code of Conduct.












                    sqlNewie is a new contributor. Be nice, and check out our Code of Conduct.











                    sqlNewie is a new contributor. Be nice, and check out our Code of Conduct.














                    Thanks for contributing an answer to Database Administrators 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.

                    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%2fdba.stackexchange.com%2fquestions%2f233861%2fextract-rows-of-a-table-that-include-less-than-x-nulls%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

                    Category:Fedor von Bock Media in category "Fedor von Bock"Navigation menuUpload mediaISNI: 0000 0000 5511 3417VIAF ID: 24712551GND ID: 119294796Library of Congress authority ID: n96068363BnF ID: 12534305fSUDOC authorities ID: 034604189Open Library ID: OL338253ANKCR AUT ID: jn19990000869National Library of Israel ID: 000514068National Thesaurus for Author Names ID: 341574317ReasonatorScholiaStatistics

                    Reverse int within the 32-bit signed integer range: [−2^31, 2^31 − 1]Combining two 32-bit integers into one 64-bit integerDetermine if an int is within rangeLossy packing 32 bit integer to 16 bitComputing the square root of a 64-bit integerKeeping integer addition within boundsSafe multiplication of two 64-bit signed integersLeetcode 10: Regular Expression MatchingSigned integer-to-ascii x86_64 assembler macroReverse the digits of an Integer“Add two numbers given in reverse order from a linked list”

                    Log på Navigationsmenu