Extracting sublists that contain similar elementsPrepend 0 to sublistsComparing elements of the $n^textth$ sublist in a ragged list with the $n^textth$ member of a sequenceSelect sublists with second element nearest to zeroAdd elements of one list to sublists of another listSplit list into overlapping sublistsEliminating elements from sublists under a global conditionSort columns in a TableFormList manipulation with random elements under limiting conditionsHow to split sublists into sub-sublists without merging the sublistsProblems in dealing with sublists

Multi tool use
Multi tool use

Why does this if-statement combining assignment and an equality check return true?

A steel cutting sword?

I know that there is a preselected candidate for a position to be filled at my department. What should I do?

Parallel fifths in the orchestra

Does COBRA make sense anymore with the ACA?

How to politely tell someone they did not hit "reply to all" in an email?

Do I need full recovery mode when I have multiple daily backup?

Can a US state pass/enforce a law stating that a group of people owe money to the state government?

Why aren't space telescopes put in GEO?

Compaq Portable vs IBM 5155 Portable PC

Is this statement about cut time correct?

Did 20% of US soldiers in Vietnam use heroin, 95% of whom quit afterwards?

Defining the standard model of PA so that a space alien could understand

What does $!# mean in Shell scripting?

Can I connect my older mathematica front-end to the free wolfram engine?

In the 3D Zeldas, is it faster to roll or to simply walk?

Is "cool" appropriate or offensive to use in IMs?

Can a person survive on blood in place of water?

Why are GND pads often only connected by four traces?

Why did the person in charge of a principality not just declare themself king?

Where's this lookout in Nova Scotia?

Is the Indo-European language family made up?

Best material to absorb as much light as possible

Count Even Digits In Number



Extracting sublists that contain similar elements


Prepend 0 to sublistsComparing elements of the $n^textth$ sublist in a ragged list with the $n^textth$ member of a sequenceSelect sublists with second element nearest to zeroAdd elements of one list to sublists of another listSplit list into overlapping sublistsEliminating elements from sublists under a global conditionSort columns in a TableFormList manipulation with random elements under limiting conditionsHow to split sublists into sub-sublists without merging the sublistsProblems in dealing with sublists













8












$begingroup$


Let's say I have a list containing different sized sublists of string pairs structured like this



"A", "B", "C", "D", "E", "D", "G","B", "H", "B", "I", "B"


where the first and second sublists each contain two string pairs and the third and fourth sublists each contain 1 string pair.



I want to get rid of every string pair where the second string of the string pair does not appear in each sublist. For example, there exists string pairs in each sublist where the second string of the string pair is "B". Thus, I only want to keep those string pairs. The final list should look like this



"A", "B", "G","B", "H", "B", "I", "B"


Although each of the first two sublists contain a pair of strings where there is a "D" in the second element, these need to be removed since there aren't string pairs containing "D"'s in the second element of the string pairs in the third and fourth sublists.



I would like for this function to work no matter the number of sublists and no matter the number of elements contained in those sublists. I know how to do this if the list was completely flattened, but it is not in this case. There is no need for this to be an efficient process, so anything that can produce these results would be helpful. Any ideas?










share|improve this question









$endgroup$
















    8












    $begingroup$


    Let's say I have a list containing different sized sublists of string pairs structured like this



    "A", "B", "C", "D", "E", "D", "G","B", "H", "B", "I", "B"


    where the first and second sublists each contain two string pairs and the third and fourth sublists each contain 1 string pair.



    I want to get rid of every string pair where the second string of the string pair does not appear in each sublist. For example, there exists string pairs in each sublist where the second string of the string pair is "B". Thus, I only want to keep those string pairs. The final list should look like this



    "A", "B", "G","B", "H", "B", "I", "B"


    Although each of the first two sublists contain a pair of strings where there is a "D" in the second element, these need to be removed since there aren't string pairs containing "D"'s in the second element of the string pairs in the third and fourth sublists.



    I would like for this function to work no matter the number of sublists and no matter the number of elements contained in those sublists. I know how to do this if the list was completely flattened, but it is not in this case. There is no need for this to be an efficient process, so anything that can produce these results would be helpful. Any ideas?










    share|improve this question









    $endgroup$














      8












      8








      8


      1



      $begingroup$


      Let's say I have a list containing different sized sublists of string pairs structured like this



      "A", "B", "C", "D", "E", "D", "G","B", "H", "B", "I", "B"


      where the first and second sublists each contain two string pairs and the third and fourth sublists each contain 1 string pair.



      I want to get rid of every string pair where the second string of the string pair does not appear in each sublist. For example, there exists string pairs in each sublist where the second string of the string pair is "B". Thus, I only want to keep those string pairs. The final list should look like this



      "A", "B", "G","B", "H", "B", "I", "B"


      Although each of the first two sublists contain a pair of strings where there is a "D" in the second element, these need to be removed since there aren't string pairs containing "D"'s in the second element of the string pairs in the third and fourth sublists.



      I would like for this function to work no matter the number of sublists and no matter the number of elements contained in those sublists. I know how to do this if the list was completely flattened, but it is not in this case. There is no need for this to be an efficient process, so anything that can produce these results would be helpful. Any ideas?










      share|improve this question









      $endgroup$




      Let's say I have a list containing different sized sublists of string pairs structured like this



      "A", "B", "C", "D", "E", "D", "G","B", "H", "B", "I", "B"


      where the first and second sublists each contain two string pairs and the third and fourth sublists each contain 1 string pair.



      I want to get rid of every string pair where the second string of the string pair does not appear in each sublist. For example, there exists string pairs in each sublist where the second string of the string pair is "B". Thus, I only want to keep those string pairs. The final list should look like this



      "A", "B", "G","B", "H", "B", "I", "B"


      Although each of the first two sublists contain a pair of strings where there is a "D" in the second element, these need to be removed since there aren't string pairs containing "D"'s in the second element of the string pairs in the third and fourth sublists.



      I would like for this function to work no matter the number of sublists and no matter the number of elements contained in those sublists. I know how to do this if the list was completely flattened, but it is not in this case. There is no need for this to be an efficient process, so anything that can produce these results would be helpful. Any ideas?







      list-manipulation






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked May 11 at 20:59









      EricEric

      411




      411




















          4 Answers
          4






          active

          oldest

          votes


















          7












          $begingroup$

          I assume that it's always the second element that determines sublist eligibility:



          L = "A", "B", "C", "D", "E", "D", "G", "B", "H", "B", "I", "B";

          Cases[_, Alternatives @@ Intersection @@ L[[All, All, 2]], ___] /@ L



          "A", "B", "G", "B", "H", "B", "I", "B"




          If instead it's always the last element, then the pattern would be



          Cases[___, Alternatives @@ Intersection @@ L[[All, All, -1]]] /@ L



          "A", "B", "G", "B", "H", "B", "I", "B"







          share|improve this answer











          $endgroup$












          • $begingroup$
            Sorry, I should have been more clear. Both work in my case. Thank you very much!
            $endgroup$
            – Eric
            May 11 at 21:29


















          5












          $begingroup$

          Using GroupBy and KeyIntersection:



          ClearAll[f1]
          f1 = Apply[Join]@*Values@*KeyIntersection@*Map[GroupBy[Last]];

          lst = "A", "B", "C", "D", "E", "D", "G", "B", "H", "B", "I", "B";
          f1 @ lst



          "A", "B", "G", "B", "H", "B", "I", "B"




          DeleteCases seems to be faster:



          ClearAll[f2]
          f2 = DeleteCases[#, Except@___, Alternatives @@ Intersection @@ #[[All, All, -1]], 2]&;

          f2 @ lst



          "A", "B", "G", "B", "H", "B", "I", "B"







          share|improve this answer











          $endgroup$








          • 1




            $begingroup$
            By applying my method at Cases-level 2 and then re-Listing, you lose information when multiple list members qualify: try L = "A", "B", "C", "D", "X", "B", "E", "D", "G", "B", "H", "B", "I", "B", where your method takes the first list apart into "A", "B", "X", "B" instead of keeping its structure as "A", "B", "X", "B". Not sure what's the right behavior in this question though.
            $endgroup$
            – Roman
            May 12 at 6:34






          • 1




            $begingroup$
            @Roman, very good point. I think the result for your example should be "A", "B", "X", "B". I removed Cases[... ,2] and replaced it with DeleteCases.
            $endgroup$
            – kglr
            May 12 at 7:40


















          3












          $begingroup$

          list="A","B","C","D","E","D","G","B","H","B","I","B"; 

          List/@Select[Flatten[list,1],MemberQ[Last@@@Select[list,Length@#==1&],#[[2]]]&]



          "A", "B", "G", "B", "H", "B", "I", "B"







          share|improve this answer









          $endgroup$




















            3












            $begingroup$

            a = "A", "B", "C", "D", "E", "D", "G", "B", "H","B", "I", "B"
            f = Select[ContainsAny[Intersection @@ Union @@@ #]@*List@*Last] /@ # &;

            f[a]



            "A", "B", "G", "B", "H", "B", "I", "B"







            share|improve this answer











            $endgroup$













              Your Answer








              StackExchange.ready(function()
              var channelOptions =
              tags: "".split(" "),
              id: "387"
              ;
              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%2fmathematica.stackexchange.com%2fquestions%2f198188%2fextracting-sublists-that-contain-similar-elements%23new-answer', 'question_page');

              );

              Post as a guest















              Required, but never shown

























              4 Answers
              4






              active

              oldest

              votes








              4 Answers
              4






              active

              oldest

              votes









              active

              oldest

              votes






              active

              oldest

              votes









              7












              $begingroup$

              I assume that it's always the second element that determines sublist eligibility:



              L = "A", "B", "C", "D", "E", "D", "G", "B", "H", "B", "I", "B";

              Cases[_, Alternatives @@ Intersection @@ L[[All, All, 2]], ___] /@ L



              "A", "B", "G", "B", "H", "B", "I", "B"




              If instead it's always the last element, then the pattern would be



              Cases[___, Alternatives @@ Intersection @@ L[[All, All, -1]]] /@ L



              "A", "B", "G", "B", "H", "B", "I", "B"







              share|improve this answer











              $endgroup$












              • $begingroup$
                Sorry, I should have been more clear. Both work in my case. Thank you very much!
                $endgroup$
                – Eric
                May 11 at 21:29















              7












              $begingroup$

              I assume that it's always the second element that determines sublist eligibility:



              L = "A", "B", "C", "D", "E", "D", "G", "B", "H", "B", "I", "B";

              Cases[_, Alternatives @@ Intersection @@ L[[All, All, 2]], ___] /@ L



              "A", "B", "G", "B", "H", "B", "I", "B"




              If instead it's always the last element, then the pattern would be



              Cases[___, Alternatives @@ Intersection @@ L[[All, All, -1]]] /@ L



              "A", "B", "G", "B", "H", "B", "I", "B"







              share|improve this answer











              $endgroup$












              • $begingroup$
                Sorry, I should have been more clear. Both work in my case. Thank you very much!
                $endgroup$
                – Eric
                May 11 at 21:29













              7












              7








              7





              $begingroup$

              I assume that it's always the second element that determines sublist eligibility:



              L = "A", "B", "C", "D", "E", "D", "G", "B", "H", "B", "I", "B";

              Cases[_, Alternatives @@ Intersection @@ L[[All, All, 2]], ___] /@ L



              "A", "B", "G", "B", "H", "B", "I", "B"




              If instead it's always the last element, then the pattern would be



              Cases[___, Alternatives @@ Intersection @@ L[[All, All, -1]]] /@ L



              "A", "B", "G", "B", "H", "B", "I", "B"







              share|improve this answer











              $endgroup$



              I assume that it's always the second element that determines sublist eligibility:



              L = "A", "B", "C", "D", "E", "D", "G", "B", "H", "B", "I", "B";

              Cases[_, Alternatives @@ Intersection @@ L[[All, All, 2]], ___] /@ L



              "A", "B", "G", "B", "H", "B", "I", "B"




              If instead it's always the last element, then the pattern would be



              Cases[___, Alternatives @@ Intersection @@ L[[All, All, -1]]] /@ L



              "A", "B", "G", "B", "H", "B", "I", "B"








              share|improve this answer














              share|improve this answer



              share|improve this answer








              edited May 11 at 21:21

























              answered May 11 at 21:14









              RomanRoman

              9,17011440




              9,17011440











              • $begingroup$
                Sorry, I should have been more clear. Both work in my case. Thank you very much!
                $endgroup$
                – Eric
                May 11 at 21:29
















              • $begingroup$
                Sorry, I should have been more clear. Both work in my case. Thank you very much!
                $endgroup$
                – Eric
                May 11 at 21:29















              $begingroup$
              Sorry, I should have been more clear. Both work in my case. Thank you very much!
              $endgroup$
              – Eric
              May 11 at 21:29




              $begingroup$
              Sorry, I should have been more clear. Both work in my case. Thank you very much!
              $endgroup$
              – Eric
              May 11 at 21:29











              5












              $begingroup$

              Using GroupBy and KeyIntersection:



              ClearAll[f1]
              f1 = Apply[Join]@*Values@*KeyIntersection@*Map[GroupBy[Last]];

              lst = "A", "B", "C", "D", "E", "D", "G", "B", "H", "B", "I", "B";
              f1 @ lst



              "A", "B", "G", "B", "H", "B", "I", "B"




              DeleteCases seems to be faster:



              ClearAll[f2]
              f2 = DeleteCases[#, Except@___, Alternatives @@ Intersection @@ #[[All, All, -1]], 2]&;

              f2 @ lst



              "A", "B", "G", "B", "H", "B", "I", "B"







              share|improve this answer











              $endgroup$








              • 1




                $begingroup$
                By applying my method at Cases-level 2 and then re-Listing, you lose information when multiple list members qualify: try L = "A", "B", "C", "D", "X", "B", "E", "D", "G", "B", "H", "B", "I", "B", where your method takes the first list apart into "A", "B", "X", "B" instead of keeping its structure as "A", "B", "X", "B". Not sure what's the right behavior in this question though.
                $endgroup$
                – Roman
                May 12 at 6:34






              • 1




                $begingroup$
                @Roman, very good point. I think the result for your example should be "A", "B", "X", "B". I removed Cases[... ,2] and replaced it with DeleteCases.
                $endgroup$
                – kglr
                May 12 at 7:40















              5












              $begingroup$

              Using GroupBy and KeyIntersection:



              ClearAll[f1]
              f1 = Apply[Join]@*Values@*KeyIntersection@*Map[GroupBy[Last]];

              lst = "A", "B", "C", "D", "E", "D", "G", "B", "H", "B", "I", "B";
              f1 @ lst



              "A", "B", "G", "B", "H", "B", "I", "B"




              DeleteCases seems to be faster:



              ClearAll[f2]
              f2 = DeleteCases[#, Except@___, Alternatives @@ Intersection @@ #[[All, All, -1]], 2]&;

              f2 @ lst



              "A", "B", "G", "B", "H", "B", "I", "B"







              share|improve this answer











              $endgroup$








              • 1




                $begingroup$
                By applying my method at Cases-level 2 and then re-Listing, you lose information when multiple list members qualify: try L = "A", "B", "C", "D", "X", "B", "E", "D", "G", "B", "H", "B", "I", "B", where your method takes the first list apart into "A", "B", "X", "B" instead of keeping its structure as "A", "B", "X", "B". Not sure what's the right behavior in this question though.
                $endgroup$
                – Roman
                May 12 at 6:34






              • 1




                $begingroup$
                @Roman, very good point. I think the result for your example should be "A", "B", "X", "B". I removed Cases[... ,2] and replaced it with DeleteCases.
                $endgroup$
                – kglr
                May 12 at 7:40













              5












              5








              5





              $begingroup$

              Using GroupBy and KeyIntersection:



              ClearAll[f1]
              f1 = Apply[Join]@*Values@*KeyIntersection@*Map[GroupBy[Last]];

              lst = "A", "B", "C", "D", "E", "D", "G", "B", "H", "B", "I", "B";
              f1 @ lst



              "A", "B", "G", "B", "H", "B", "I", "B"




              DeleteCases seems to be faster:



              ClearAll[f2]
              f2 = DeleteCases[#, Except@___, Alternatives @@ Intersection @@ #[[All, All, -1]], 2]&;

              f2 @ lst



              "A", "B", "G", "B", "H", "B", "I", "B"







              share|improve this answer











              $endgroup$



              Using GroupBy and KeyIntersection:



              ClearAll[f1]
              f1 = Apply[Join]@*Values@*KeyIntersection@*Map[GroupBy[Last]];

              lst = "A", "B", "C", "D", "E", "D", "G", "B", "H", "B", "I", "B";
              f1 @ lst



              "A", "B", "G", "B", "H", "B", "I", "B"




              DeleteCases seems to be faster:



              ClearAll[f2]
              f2 = DeleteCases[#, Except@___, Alternatives @@ Intersection @@ #[[All, All, -1]], 2]&;

              f2 @ lst



              "A", "B", "G", "B", "H", "B", "I", "B"








              share|improve this answer














              share|improve this answer



              share|improve this answer








              edited May 12 at 7:38

























              answered May 12 at 4:22









              kglrkglr

              194k10214435




              194k10214435







              • 1




                $begingroup$
                By applying my method at Cases-level 2 and then re-Listing, you lose information when multiple list members qualify: try L = "A", "B", "C", "D", "X", "B", "E", "D", "G", "B", "H", "B", "I", "B", where your method takes the first list apart into "A", "B", "X", "B" instead of keeping its structure as "A", "B", "X", "B". Not sure what's the right behavior in this question though.
                $endgroup$
                – Roman
                May 12 at 6:34






              • 1




                $begingroup$
                @Roman, very good point. I think the result for your example should be "A", "B", "X", "B". I removed Cases[... ,2] and replaced it with DeleteCases.
                $endgroup$
                – kglr
                May 12 at 7:40












              • 1




                $begingroup$
                By applying my method at Cases-level 2 and then re-Listing, you lose information when multiple list members qualify: try L = "A", "B", "C", "D", "X", "B", "E", "D", "G", "B", "H", "B", "I", "B", where your method takes the first list apart into "A", "B", "X", "B" instead of keeping its structure as "A", "B", "X", "B". Not sure what's the right behavior in this question though.
                $endgroup$
                – Roman
                May 12 at 6:34






              • 1




                $begingroup$
                @Roman, very good point. I think the result for your example should be "A", "B", "X", "B". I removed Cases[... ,2] and replaced it with DeleteCases.
                $endgroup$
                – kglr
                May 12 at 7:40







              1




              1




              $begingroup$
              By applying my method at Cases-level 2 and then re-Listing, you lose information when multiple list members qualify: try L = "A", "B", "C", "D", "X", "B", "E", "D", "G", "B", "H", "B", "I", "B", where your method takes the first list apart into "A", "B", "X", "B" instead of keeping its structure as "A", "B", "X", "B". Not sure what's the right behavior in this question though.
              $endgroup$
              – Roman
              May 12 at 6:34




              $begingroup$
              By applying my method at Cases-level 2 and then re-Listing, you lose information when multiple list members qualify: try L = "A", "B", "C", "D", "X", "B", "E", "D", "G", "B", "H", "B", "I", "B", where your method takes the first list apart into "A", "B", "X", "B" instead of keeping its structure as "A", "B", "X", "B". Not sure what's the right behavior in this question though.
              $endgroup$
              – Roman
              May 12 at 6:34




              1




              1




              $begingroup$
              @Roman, very good point. I think the result for your example should be "A", "B", "X", "B". I removed Cases[... ,2] and replaced it with DeleteCases.
              $endgroup$
              – kglr
              May 12 at 7:40




              $begingroup$
              @Roman, very good point. I think the result for your example should be "A", "B", "X", "B". I removed Cases[... ,2] and replaced it with DeleteCases.
              $endgroup$
              – kglr
              May 12 at 7:40











              3












              $begingroup$

              list="A","B","C","D","E","D","G","B","H","B","I","B"; 

              List/@Select[Flatten[list,1],MemberQ[Last@@@Select[list,Length@#==1&],#[[2]]]&]



              "A", "B", "G", "B", "H", "B", "I", "B"







              share|improve this answer









              $endgroup$

















                3












                $begingroup$

                list="A","B","C","D","E","D","G","B","H","B","I","B"; 

                List/@Select[Flatten[list,1],MemberQ[Last@@@Select[list,Length@#==1&],#[[2]]]&]



                "A", "B", "G", "B", "H", "B", "I", "B"







                share|improve this answer









                $endgroup$















                  3












                  3








                  3





                  $begingroup$

                  list="A","B","C","D","E","D","G","B","H","B","I","B"; 

                  List/@Select[Flatten[list,1],MemberQ[Last@@@Select[list,Length@#==1&],#[[2]]]&]



                  "A", "B", "G", "B", "H", "B", "I", "B"







                  share|improve this answer









                  $endgroup$



                  list="A","B","C","D","E","D","G","B","H","B","I","B"; 

                  List/@Select[Flatten[list,1],MemberQ[Last@@@Select[list,Length@#==1&],#[[2]]]&]



                  "A", "B", "G", "B", "H", "B", "I", "B"








                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered May 11 at 21:08









                  J42161217J42161217

                  5,335525




                  5,335525





















                      3












                      $begingroup$

                      a = "A", "B", "C", "D", "E", "D", "G", "B", "H","B", "I", "B"
                      f = Select[ContainsAny[Intersection @@ Union @@@ #]@*List@*Last] /@ # &;

                      f[a]



                      "A", "B", "G", "B", "H", "B", "I", "B"







                      share|improve this answer











                      $endgroup$

















                        3












                        $begingroup$

                        a = "A", "B", "C", "D", "E", "D", "G", "B", "H","B", "I", "B"
                        f = Select[ContainsAny[Intersection @@ Union @@@ #]@*List@*Last] /@ # &;

                        f[a]



                        "A", "B", "G", "B", "H", "B", "I", "B"







                        share|improve this answer











                        $endgroup$















                          3












                          3








                          3





                          $begingroup$

                          a = "A", "B", "C", "D", "E", "D", "G", "B", "H","B", "I", "B"
                          f = Select[ContainsAny[Intersection @@ Union @@@ #]@*List@*Last] /@ # &;

                          f[a]



                          "A", "B", "G", "B", "H", "B", "I", "B"







                          share|improve this answer











                          $endgroup$



                          a = "A", "B", "C", "D", "E", "D", "G", "B", "H","B", "I", "B"
                          f = Select[ContainsAny[Intersection @@ Union @@@ #]@*List@*Last] /@ # &;

                          f[a]



                          "A", "B", "G", "B", "H", "B", "I", "B"








                          share|improve this answer














                          share|improve this answer



                          share|improve this answer








                          edited May 11 at 21:14

























                          answered May 11 at 21:08









                          Henrik SchumacherHenrik Schumacher

                          63.2k587176




                          63.2k587176



























                              draft saved

                              draft discarded
















































                              Thanks for contributing an answer to Mathematica 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%2fmathematica.stackexchange.com%2fquestions%2f198188%2fextracting-sublists-that-contain-similar-elements%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







                              WBlAU0g1cTUKs 0P0EqCK J5X,n91ZUZ LhD2Y3Hg,r4b1mfbEe O9QAD,cgtvR fNPhIaj,DPApU5v9 E7V7VLK MxD
                              SfWnoENg83jyYHvckXIQ6aEhZ6e25RvI038ik l16QONHe,VzEWfLP67IZm4EOc,W2GDZf0,7xp4,xbXmYp,9EPLx

                              Popular posts from this blog

                              RemoteApp sporadic failureWindows 2008 RemoteAPP client disconnects within a matter of minutesWhat is the minimum version of RDP supported by Server 2012 RDS?How to configure a Remoteapp server to increase stabilityMicrosoft RemoteApp Active SessionRDWeb TS connection broken for some users post RemoteApp certificate changeRemote Desktop Licensing, RemoteAPPRDS 2012 R2 some users are not able to logon after changed date and time on Connection BrokersWhat happens during Remote Desktop logon, and is there any logging?After installing RDS on WinServer 2016 I still can only connect with two users?RD Connection via RDGW to Session host is not connecting

                              Vilaño, A Laracha Índice Patrimonio | Lugares e parroquias | Véxase tamén | Menú de navegación43°14′52″N 8°36′03″O / 43.24775, -8.60070

                              Cegueira Índice Epidemioloxía | Deficiencia visual | Tipos de cegueira | Principais causas de cegueira | Tratamento | Técnicas de adaptación e axudas | Vida dos cegos | Primeiros auxilios | Crenzas respecto das persoas cegas | Crenzas das persoas cegas | O neno deficiente visual | Aspectos psicolóxicos da cegueira | Notas | Véxase tamén | Menú de navegación54.054.154.436928256blindnessDicionario da Real Academia GalegaPortal das Palabras"International Standards: Visual Standards — Aspects and Ranges of Vision Loss with Emphasis on Population Surveys.""Visual impairment and blindness""Presentan un plan para previr a cegueira"o orixinalACCDV Associació Catalana de Cecs i Disminuïts Visuals - PMFTrachoma"Effect of gene therapy on visual function in Leber's congenital amaurosis"1844137110.1056/NEJMoa0802268Cans guía - os mellores amigos dos cegosArquivadoEscola de cans guía para cegos en Mortágua, PortugalArquivado"Tecnología para ciegos y deficientes visuales. Recopilación de recursos gratuitos en la Red""Colorino""‘COL.diesis’, escuchar los sonidos del color""COL.diesis: Transforming Colour into Melody and Implementing the Result in a Colour Sensor Device"o orixinal"Sistema de desarrollo de sinestesia color-sonido para invidentes utilizando un protocolo de audio""Enseñanza táctil - geometría y color. Juegos didácticos para niños ciegos y videntes""Sistema Constanz"L'ocupació laboral dels cecs a l'Estat espanyol està pràcticament equiparada a la de les persones amb visió, entrevista amb Pedro ZuritaONCE (Organización Nacional de Cegos de España)Prevención da cegueiraDescrición de deficiencias visuais (Disc@pnet)Braillín, un boneco atractivo para calquera neno, con ou sen discapacidade, que permite familiarizarse co sistema de escritura e lectura brailleAxudas Técnicas36838ID00897494007150-90057129528256DOID:1432HP:0000618D001766C10.597.751.941.162C97109C0155020