Remove proper subsets from list of setsEfficient algorithm for finding all maximal subsetsHow do I check if a list is empty?Finding the index of an item given a list containing it in PythonWhat is the difference between Python's list methods append and extend?How to randomly select an item from a list?How to remove an element from a list by index?How to make a flat list out of list of listsImprove INSERT-per-second performance of SQLite?How to clone or copy a list?How do I list all files of a directory?Replacing a 32-bit loop counter with 64-bit introduces crazy performance deviations

Why do player start with fighting for the corners in go?

How do people drown while wearing a life jacket?

How does shared_ptr<void> know which destructor to use?

What is Albrecht Dürer's Perspective Machine drawing style?

Word for pulling a punch in karate

Is it moral to remove/hide certain parts of a photo, as a photographer?

Why interlaced CRT scanning wasn't done back and forth?

Need help identifying how to open this bolt/screw

Has J.J.Jameson ever found out that Peter Parker is Spider-Man?

What printing process is this?

How to handle many times series?

characteristic of ring

Word to describe someone doing something even though told not to

What is the reason behind water not falling from a bucket at the top of loop?

Subverting the essence of fictional and/or religious entities; is it acceptable?

Where do I keep track of sorcery points on a character sheet?

Skipping same old introductions

What license to choose for my PhD thesis?

Can birds evolve without trees?

Why are sugars in whole fruits not digested the same way sugars in juice are?

Can't understand an ACT practice problem: Triangle appears to be isosceles, why isn't the answer 7.3~ here?

Is law enforcement responsible for damages made by a search warrant?

Detect lightning:recordForm change in mode attribute

Search and replace a substring only if another substring is not present



Remove proper subsets from list of sets


Efficient algorithm for finding all maximal subsetsHow do I check if a list is empty?Finding the index of an item given a list containing it in PythonWhat is the difference between Python's list methods append and extend?How to randomly select an item from a list?How to remove an element from a list by index?How to make a flat list out of list of listsImprove INSERT-per-second performance of SQLite?How to clone or copy a list?How do I list all files of a directory?Replacing a 32-bit loop counter with 64-bit introduces crazy performance deviations






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








0















I'm trying to remove all the proper subsets from a list of sets. From the top of my head, I was thinking about using 2 for loops to check if an element is a proper subset of all the elements, however, that is too slow.



The code I was thinking about:



Let A be a list of sets



Let B be an empty list



for elm in A:
for i in range(len(A)):
if elm.issubset(A[i]) and elm != A[i]:
B.append(elm)
for junk in B:
A.remove(junk)


I looked at some answers, and saw this post:
Efficient algorithm for finding all maximal subsets
which works with getting rid of all subsets but I run into a problem when there are 2 sets that are the same, since 2 equal sets are subsets to each other. If 2 sets are the same, then it gets rid of both of them, that's why I'd like to get rid of only proper subsets rather than just all subsets.










share|improve this question






























    0















    I'm trying to remove all the proper subsets from a list of sets. From the top of my head, I was thinking about using 2 for loops to check if an element is a proper subset of all the elements, however, that is too slow.



    The code I was thinking about:



    Let A be a list of sets



    Let B be an empty list



    for elm in A:
    for i in range(len(A)):
    if elm.issubset(A[i]) and elm != A[i]:
    B.append(elm)
    for junk in B:
    A.remove(junk)


    I looked at some answers, and saw this post:
    Efficient algorithm for finding all maximal subsets
    which works with getting rid of all subsets but I run into a problem when there are 2 sets that are the same, since 2 equal sets are subsets to each other. If 2 sets are the same, then it gets rid of both of them, that's why I'd like to get rid of only proper subsets rather than just all subsets.










    share|improve this question


























      0












      0








      0








      I'm trying to remove all the proper subsets from a list of sets. From the top of my head, I was thinking about using 2 for loops to check if an element is a proper subset of all the elements, however, that is too slow.



      The code I was thinking about:



      Let A be a list of sets



      Let B be an empty list



      for elm in A:
      for i in range(len(A)):
      if elm.issubset(A[i]) and elm != A[i]:
      B.append(elm)
      for junk in B:
      A.remove(junk)


      I looked at some answers, and saw this post:
      Efficient algorithm for finding all maximal subsets
      which works with getting rid of all subsets but I run into a problem when there are 2 sets that are the same, since 2 equal sets are subsets to each other. If 2 sets are the same, then it gets rid of both of them, that's why I'd like to get rid of only proper subsets rather than just all subsets.










      share|improve this question














      I'm trying to remove all the proper subsets from a list of sets. From the top of my head, I was thinking about using 2 for loops to check if an element is a proper subset of all the elements, however, that is too slow.



      The code I was thinking about:



      Let A be a list of sets



      Let B be an empty list



      for elm in A:
      for i in range(len(A)):
      if elm.issubset(A[i]) and elm != A[i]:
      B.append(elm)
      for junk in B:
      A.remove(junk)


      I looked at some answers, and saw this post:
      Efficient algorithm for finding all maximal subsets
      which works with getting rid of all subsets but I run into a problem when there are 2 sets that are the same, since 2 equal sets are subsets to each other. If 2 sets are the same, then it gets rid of both of them, that's why I'd like to get rid of only proper subsets rather than just all subsets.







      python performance set






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Mar 27 at 1:08









      Kevin LeKevin Le

      318 bronze badges




      318 bronze badges

























          1 Answer
          1






          active

          oldest

          votes


















          0














          Sounds like an assignment for dynamic programming. So I won't present you the final solution in code. Rather, I will give you some hints.



          Denote the length of list A as N. Imagine a N by N matrix of 1 and 0, denoted as X. If X(i, j) is 1, it means A[i] is proper subset of A[j], otherwise 0. Your task is to fill up the whole matrix X with minimal work.



          There are several kinds of inference you can make on the matrix X:




          1. X(i, j) == 1 implies X(j, i) == 0


          2. len(A[i]) >= len(A[j]) implies X(i, j) == 0


          3. X(i, j) == 1 and X(j, k) == 1 implies X(i, k) == 1

          Your task in designing the algorithm is to order the comparisons in a way such that the number of required comparison on average to fill X is minimal, mostly by making use of the rules above as often as possible.






          share|improve this answer
























            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: "1"
            ;
            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: true,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: 10,
            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%2fstackoverflow.com%2fquestions%2f55368352%2fremove-proper-subsets-from-list-of-sets%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown

























            1 Answer
            1






            active

            oldest

            votes








            1 Answer
            1






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            0














            Sounds like an assignment for dynamic programming. So I won't present you the final solution in code. Rather, I will give you some hints.



            Denote the length of list A as N. Imagine a N by N matrix of 1 and 0, denoted as X. If X(i, j) is 1, it means A[i] is proper subset of A[j], otherwise 0. Your task is to fill up the whole matrix X with minimal work.



            There are several kinds of inference you can make on the matrix X:




            1. X(i, j) == 1 implies X(j, i) == 0


            2. len(A[i]) >= len(A[j]) implies X(i, j) == 0


            3. X(i, j) == 1 and X(j, k) == 1 implies X(i, k) == 1

            Your task in designing the algorithm is to order the comparisons in a way such that the number of required comparison on average to fill X is minimal, mostly by making use of the rules above as often as possible.






            share|improve this answer





























              0














              Sounds like an assignment for dynamic programming. So I won't present you the final solution in code. Rather, I will give you some hints.



              Denote the length of list A as N. Imagine a N by N matrix of 1 and 0, denoted as X. If X(i, j) is 1, it means A[i] is proper subset of A[j], otherwise 0. Your task is to fill up the whole matrix X with minimal work.



              There are several kinds of inference you can make on the matrix X:




              1. X(i, j) == 1 implies X(j, i) == 0


              2. len(A[i]) >= len(A[j]) implies X(i, j) == 0


              3. X(i, j) == 1 and X(j, k) == 1 implies X(i, k) == 1

              Your task in designing the algorithm is to order the comparisons in a way such that the number of required comparison on average to fill X is minimal, mostly by making use of the rules above as often as possible.






              share|improve this answer



























                0












                0








                0







                Sounds like an assignment for dynamic programming. So I won't present you the final solution in code. Rather, I will give you some hints.



                Denote the length of list A as N. Imagine a N by N matrix of 1 and 0, denoted as X. If X(i, j) is 1, it means A[i] is proper subset of A[j], otherwise 0. Your task is to fill up the whole matrix X with minimal work.



                There are several kinds of inference you can make on the matrix X:




                1. X(i, j) == 1 implies X(j, i) == 0


                2. len(A[i]) >= len(A[j]) implies X(i, j) == 0


                3. X(i, j) == 1 and X(j, k) == 1 implies X(i, k) == 1

                Your task in designing the algorithm is to order the comparisons in a way such that the number of required comparison on average to fill X is minimal, mostly by making use of the rules above as often as possible.






                share|improve this answer













                Sounds like an assignment for dynamic programming. So I won't present you the final solution in code. Rather, I will give you some hints.



                Denote the length of list A as N. Imagine a N by N matrix of 1 and 0, denoted as X. If X(i, j) is 1, it means A[i] is proper subset of A[j], otherwise 0. Your task is to fill up the whole matrix X with minimal work.



                There are several kinds of inference you can make on the matrix X:




                1. X(i, j) == 1 implies X(j, i) == 0


                2. len(A[i]) >= len(A[j]) implies X(i, j) == 0


                3. X(i, j) == 1 and X(j, k) == 1 implies X(i, k) == 1

                Your task in designing the algorithm is to order the comparisons in a way such that the number of required comparison on average to fill X is minimal, mostly by making use of the rules above as often as possible.







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Mar 27 at 2:26









                PM HuiPM Hui

                1566 bronze badges




                1566 bronze badges





















                    Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.







                    Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.



















                    draft saved

                    draft discarded
















































                    Thanks for contributing an answer to Stack Overflow!


                    • 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%2fstackoverflow.com%2fquestions%2f55368352%2fremove-proper-subsets-from-list-of-sets%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

                    SQL error code 1064 with creating Laravel foreign keysForeign key constraints: When to use ON UPDATE and ON DELETEDropping column with foreign key Laravel error: General error: 1025 Error on renameLaravel SQL Can't create tableLaravel Migration foreign key errorLaravel php artisan migrate:refresh giving a syntax errorSQLSTATE[42S01]: Base table or view already exists or Base table or view already exists: 1050 Tableerror in migrating laravel file to xampp serverSyntax error or access violation: 1064:syntax to use near 'unsigned not null, modelName varchar(191) not null, title varchar(191) not nLaravel cannot create new table field in mysqlLaravel 5.7:Last migration creates table but is not registered in the migration table

                    용인 삼성생명 블루밍스 목차 통계 역대 감독 선수단 응원단 경기장 같이 보기 외부 링크 둘러보기 메뉴samsungblueminx.comeh선수 명단용인 삼성생명 블루밍스용인 삼성생명 블루밍스ehsamsungblueminx.comeheheheh

                    155 수학 과학 기타 둘러보기 메뉴eh추가해eh문서를 완성해