Regular Expression to find a pangram

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP











up vote
1
down vote

favorite












Awhile back I encountered a simple programming puzzle to determine whether a string was a pangram, or a perfect pangram. (Although it's worth noting that this particular challenge gave a different meaning than the standard definition of a "perfect pangram," to mean any sentence where every letter appears n times for some positive n). And it was a fun challenge. But recently it got me wondering whether it would be possible to solve this challenge purely with regular expressions. If it is, I expect it will be a pretty gnarly regex. But I'm not even sure it is possible.



Still, if anyone is able to do it, it would be the folks here at Code Golf. So here's the challenge:



Write a regular expression which can determine whether or not a given string is a pangram. You can assume that all non-alpha characters have already been stripped out (or don't, if you really want to challenge yourself), and that everything has been transformed into lowercase.



Bonus challenge: write another regular expression to determine whether the given string is a "perfect pangram" by the definition given above.



Examples of an ordinary pangram:




thequickbrownfoxjumpsoverthelazydog




Example of perfect pangrams:




abcdefghijklmnopqrstuvwxyz



jocknymphswaqfdrugvexblitz



squdgykilpjobzarfnthcwmvexhmfjordwaltzcinqbuskpyxveg




I'm not really sure if this is even possible just with regex alone. If you find that it is, kudos!










share|improve this question

















  • 2




    Pity that Martin is on leave
    – Luis Mendo
    4 hours ago






  • 1




    Pangram, not anagram
    – SoaperGEM
    4 hours ago










  • Quoted verbatim from the question above (read the question): "any sentence where every letter appears n times for some positive n."
    – SoaperGEM
    4 hours ago










  • Ah, sorry. Still, you need to address the other issues
    – Luis Mendo
    4 hours ago






  • 4




    Let me rephrase, as my previous comment was a mess: 1) This needs a winning criterion. Code golf? 2) Bonuses are almost always a bad idea. There should be a single task/objective to the challenge. Having two is confusing, and probably useless, as people will go fot the easier one. 3) What flavours of regexes are allowed?
    – Luis Mendo
    4 hours ago














up vote
1
down vote

favorite












Awhile back I encountered a simple programming puzzle to determine whether a string was a pangram, or a perfect pangram. (Although it's worth noting that this particular challenge gave a different meaning than the standard definition of a "perfect pangram," to mean any sentence where every letter appears n times for some positive n). And it was a fun challenge. But recently it got me wondering whether it would be possible to solve this challenge purely with regular expressions. If it is, I expect it will be a pretty gnarly regex. But I'm not even sure it is possible.



Still, if anyone is able to do it, it would be the folks here at Code Golf. So here's the challenge:



Write a regular expression which can determine whether or not a given string is a pangram. You can assume that all non-alpha characters have already been stripped out (or don't, if you really want to challenge yourself), and that everything has been transformed into lowercase.



Bonus challenge: write another regular expression to determine whether the given string is a "perfect pangram" by the definition given above.



Examples of an ordinary pangram:




thequickbrownfoxjumpsoverthelazydog




Example of perfect pangrams:




abcdefghijklmnopqrstuvwxyz



jocknymphswaqfdrugvexblitz



squdgykilpjobzarfnthcwmvexhmfjordwaltzcinqbuskpyxveg




I'm not really sure if this is even possible just with regex alone. If you find that it is, kudos!










share|improve this question

















  • 2




    Pity that Martin is on leave
    – Luis Mendo
    4 hours ago






  • 1




    Pangram, not anagram
    – SoaperGEM
    4 hours ago










  • Quoted verbatim from the question above (read the question): "any sentence where every letter appears n times for some positive n."
    – SoaperGEM
    4 hours ago










  • Ah, sorry. Still, you need to address the other issues
    – Luis Mendo
    4 hours ago






  • 4




    Let me rephrase, as my previous comment was a mess: 1) This needs a winning criterion. Code golf? 2) Bonuses are almost always a bad idea. There should be a single task/objective to the challenge. Having two is confusing, and probably useless, as people will go fot the easier one. 3) What flavours of regexes are allowed?
    – Luis Mendo
    4 hours ago












up vote
1
down vote

favorite









up vote
1
down vote

favorite











Awhile back I encountered a simple programming puzzle to determine whether a string was a pangram, or a perfect pangram. (Although it's worth noting that this particular challenge gave a different meaning than the standard definition of a "perfect pangram," to mean any sentence where every letter appears n times for some positive n). And it was a fun challenge. But recently it got me wondering whether it would be possible to solve this challenge purely with regular expressions. If it is, I expect it will be a pretty gnarly regex. But I'm not even sure it is possible.



Still, if anyone is able to do it, it would be the folks here at Code Golf. So here's the challenge:



Write a regular expression which can determine whether or not a given string is a pangram. You can assume that all non-alpha characters have already been stripped out (or don't, if you really want to challenge yourself), and that everything has been transformed into lowercase.



Bonus challenge: write another regular expression to determine whether the given string is a "perfect pangram" by the definition given above.



Examples of an ordinary pangram:




thequickbrownfoxjumpsoverthelazydog




Example of perfect pangrams:




abcdefghijklmnopqrstuvwxyz



jocknymphswaqfdrugvexblitz



squdgykilpjobzarfnthcwmvexhmfjordwaltzcinqbuskpyxveg




I'm not really sure if this is even possible just with regex alone. If you find that it is, kudos!










share|improve this question













Awhile back I encountered a simple programming puzzle to determine whether a string was a pangram, or a perfect pangram. (Although it's worth noting that this particular challenge gave a different meaning than the standard definition of a "perfect pangram," to mean any sentence where every letter appears n times for some positive n). And it was a fun challenge. But recently it got me wondering whether it would be possible to solve this challenge purely with regular expressions. If it is, I expect it will be a pretty gnarly regex. But I'm not even sure it is possible.



Still, if anyone is able to do it, it would be the folks here at Code Golf. So here's the challenge:



Write a regular expression which can determine whether or not a given string is a pangram. You can assume that all non-alpha characters have already been stripped out (or don't, if you really want to challenge yourself), and that everything has been transformed into lowercase.



Bonus challenge: write another regular expression to determine whether the given string is a "perfect pangram" by the definition given above.



Examples of an ordinary pangram:




thequickbrownfoxjumpsoverthelazydog




Example of perfect pangrams:




abcdefghijklmnopqrstuvwxyz



jocknymphswaqfdrugvexblitz



squdgykilpjobzarfnthcwmvexhmfjordwaltzcinqbuskpyxveg




I'm not really sure if this is even possible just with regex alone. If you find that it is, kudos!







regular-expression






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked 4 hours ago









SoaperGEM

1788




1788







  • 2




    Pity that Martin is on leave
    – Luis Mendo
    4 hours ago






  • 1




    Pangram, not anagram
    – SoaperGEM
    4 hours ago










  • Quoted verbatim from the question above (read the question): "any sentence where every letter appears n times for some positive n."
    – SoaperGEM
    4 hours ago










  • Ah, sorry. Still, you need to address the other issues
    – Luis Mendo
    4 hours ago






  • 4




    Let me rephrase, as my previous comment was a mess: 1) This needs a winning criterion. Code golf? 2) Bonuses are almost always a bad idea. There should be a single task/objective to the challenge. Having two is confusing, and probably useless, as people will go fot the easier one. 3) What flavours of regexes are allowed?
    – Luis Mendo
    4 hours ago












  • 2




    Pity that Martin is on leave
    – Luis Mendo
    4 hours ago






  • 1




    Pangram, not anagram
    – SoaperGEM
    4 hours ago










  • Quoted verbatim from the question above (read the question): "any sentence where every letter appears n times for some positive n."
    – SoaperGEM
    4 hours ago










  • Ah, sorry. Still, you need to address the other issues
    – Luis Mendo
    4 hours ago






  • 4




    Let me rephrase, as my previous comment was a mess: 1) This needs a winning criterion. Code golf? 2) Bonuses are almost always a bad idea. There should be a single task/objective to the challenge. Having two is confusing, and probably useless, as people will go fot the easier one. 3) What flavours of regexes are allowed?
    – Luis Mendo
    4 hours ago







2




2




Pity that Martin is on leave
– Luis Mendo
4 hours ago




Pity that Martin is on leave
– Luis Mendo
4 hours ago




1




1




Pangram, not anagram
– SoaperGEM
4 hours ago




Pangram, not anagram
– SoaperGEM
4 hours ago












Quoted verbatim from the question above (read the question): "any sentence where every letter appears n times for some positive n."
– SoaperGEM
4 hours ago




Quoted verbatim from the question above (read the question): "any sentence where every letter appears n times for some positive n."
– SoaperGEM
4 hours ago












Ah, sorry. Still, you need to address the other issues
– Luis Mendo
4 hours ago




Ah, sorry. Still, you need to address the other issues
– Luis Mendo
4 hours ago




4




4




Let me rephrase, as my previous comment was a mess: 1) This needs a winning criterion. Code golf? 2) Bonuses are almost always a bad idea. There should be a single task/objective to the challenge. Having two is confusing, and probably useless, as people will go fot the easier one. 3) What flavours of regexes are allowed?
– Luis Mendo
4 hours ago




Let me rephrase, as my previous comment was a mess: 1) This needs a winning criterion. Code golf? 2) Bonuses are almost always a bad idea. There should be a single task/objective to the challenge. Having two is confusing, and probably useless, as people will go fot the easier one. 3) What flavours of regexes are allowed?
– Luis Mendo
4 hours ago










2 Answers
2






active

oldest

votes

















up vote
3
down vote













Assuming you're using a flavor of regex that include look-aheads, detecting a pangram is straightforward, but tedious. Using Python syntax:



r"(?=.*a)(?=.*b)(?=.*c)(?=.*d)(?=.*e)(?=.*f)(?=.*g)(?=.*h)(?=.*i)(?=.*j)(?=.*k)(?=.*l)(?=.*m)(?=.*n)(?=.*o)(?=.*p)(?=.*q)(?=.*r)(?=.*s)(?=.*t)(?=.*u)(?=.*v)(?=.*w)(?=.*x)(?=.*y)(?=.*z).*"



https://regex101.com/r/Z7NjEQ/2



The (?=.*a) block tests if what follows after that point matches .*a; another way to say that is, is this expression followed by any characters and then an a, or just, does this include an a? Then repeat that check for every letter of the alphabet.



Without lookaheads, it's still possible, but even more tedious, because you have to account for every possible ordering of the alphabet. If you were limited to the letters abc, here's what it might look like:



r".*(a.*b.*c|a.*c.*b|b.*a.*c|b.*c.*a|c.*a.*b|c.*b.*a).*"



https://regex101.com/r/OnXQe7/1/



This checks for an a, any set of characters, a b, any set of characters, then a c, OR an a, any set of characters, a c, any set of characters, then a b, OR...you get the idea.



You could use the same approach to check for the standard meaning of perfect pangram (every character exactly once), but not the modified version used here.






share|improve this answer





























    up vote
    0
    down vote













    Regexp: 45 43 20 19 18 bytes



    (?!.*(.).*1).26


    Assuming the input is [a-z] (lowercase, only alphabets a to z, spaces etc removed)



    A byte saved, thanks to Neil






    share|improve this answer


















    • 1




      If you're assuming the input format then . instead of w?
      – Neil
      3 hours ago










    • Better to ask for confirmation/clarification rather than assuming anything.
      – Shaggy
      3 hours ago










    • @Neil oh, thanks, stupid me
      – FatalError
      2 hours ago










    • @Shaggy "You can assume that all non-alpha characters have already been stripped out", just notified about the assumption
      – FatalError
      2 hours ago










    • This doesn’t work for either the regular challenge or the bonus. Doesn’t match thequickbrownfoxjumpsoverthelazydog (regular pangram) or squdgykil... (the bonus).
      – FrownyFrog
      1 hour ago










    Your Answer




    StackExchange.ifUsing("editor", function ()
    return StackExchange.using("mathjaxEditing", function ()
    StackExchange.MarkdownEditor.creationCallbacks.add(function (editor, postfix)
    StackExchange.mathjaxEditing.prepareWmdForMathJax(editor, postfix, [["\$", "\$"]]);
    );
    );
    , "mathjax-editing");

    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: "200"
    ;
    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',
    convertImagesToLinks: false,
    noModals: false,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: null,
    bindNavPrevention: true,
    postfix: "",
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    );



    );













     

    draft saved


    draft discarded


















    StackExchange.ready(
    function ()
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fcodegolf.stackexchange.com%2fquestions%2f172809%2fregular-expression-to-find-a-pangram%23new-answer', 'question_page');

    );

    Post as a guest






























    2 Answers
    2






    active

    oldest

    votes








    2 Answers
    2






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes








    up vote
    3
    down vote













    Assuming you're using a flavor of regex that include look-aheads, detecting a pangram is straightforward, but tedious. Using Python syntax:



    r"(?=.*a)(?=.*b)(?=.*c)(?=.*d)(?=.*e)(?=.*f)(?=.*g)(?=.*h)(?=.*i)(?=.*j)(?=.*k)(?=.*l)(?=.*m)(?=.*n)(?=.*o)(?=.*p)(?=.*q)(?=.*r)(?=.*s)(?=.*t)(?=.*u)(?=.*v)(?=.*w)(?=.*x)(?=.*y)(?=.*z).*"



    https://regex101.com/r/Z7NjEQ/2



    The (?=.*a) block tests if what follows after that point matches .*a; another way to say that is, is this expression followed by any characters and then an a, or just, does this include an a? Then repeat that check for every letter of the alphabet.



    Without lookaheads, it's still possible, but even more tedious, because you have to account for every possible ordering of the alphabet. If you were limited to the letters abc, here's what it might look like:



    r".*(a.*b.*c|a.*c.*b|b.*a.*c|b.*c.*a|c.*a.*b|c.*b.*a).*"



    https://regex101.com/r/OnXQe7/1/



    This checks for an a, any set of characters, a b, any set of characters, then a c, OR an a, any set of characters, a c, any set of characters, then a b, OR...you get the idea.



    You could use the same approach to check for the standard meaning of perfect pangram (every character exactly once), but not the modified version used here.






    share|improve this answer


























      up vote
      3
      down vote













      Assuming you're using a flavor of regex that include look-aheads, detecting a pangram is straightforward, but tedious. Using Python syntax:



      r"(?=.*a)(?=.*b)(?=.*c)(?=.*d)(?=.*e)(?=.*f)(?=.*g)(?=.*h)(?=.*i)(?=.*j)(?=.*k)(?=.*l)(?=.*m)(?=.*n)(?=.*o)(?=.*p)(?=.*q)(?=.*r)(?=.*s)(?=.*t)(?=.*u)(?=.*v)(?=.*w)(?=.*x)(?=.*y)(?=.*z).*"



      https://regex101.com/r/Z7NjEQ/2



      The (?=.*a) block tests if what follows after that point matches .*a; another way to say that is, is this expression followed by any characters and then an a, or just, does this include an a? Then repeat that check for every letter of the alphabet.



      Without lookaheads, it's still possible, but even more tedious, because you have to account for every possible ordering of the alphabet. If you were limited to the letters abc, here's what it might look like:



      r".*(a.*b.*c|a.*c.*b|b.*a.*c|b.*c.*a|c.*a.*b|c.*b.*a).*"



      https://regex101.com/r/OnXQe7/1/



      This checks for an a, any set of characters, a b, any set of characters, then a c, OR an a, any set of characters, a c, any set of characters, then a b, OR...you get the idea.



      You could use the same approach to check for the standard meaning of perfect pangram (every character exactly once), but not the modified version used here.






      share|improve this answer
























        up vote
        3
        down vote










        up vote
        3
        down vote









        Assuming you're using a flavor of regex that include look-aheads, detecting a pangram is straightforward, but tedious. Using Python syntax:



        r"(?=.*a)(?=.*b)(?=.*c)(?=.*d)(?=.*e)(?=.*f)(?=.*g)(?=.*h)(?=.*i)(?=.*j)(?=.*k)(?=.*l)(?=.*m)(?=.*n)(?=.*o)(?=.*p)(?=.*q)(?=.*r)(?=.*s)(?=.*t)(?=.*u)(?=.*v)(?=.*w)(?=.*x)(?=.*y)(?=.*z).*"



        https://regex101.com/r/Z7NjEQ/2



        The (?=.*a) block tests if what follows after that point matches .*a; another way to say that is, is this expression followed by any characters and then an a, or just, does this include an a? Then repeat that check for every letter of the alphabet.



        Without lookaheads, it's still possible, but even more tedious, because you have to account for every possible ordering of the alphabet. If you were limited to the letters abc, here's what it might look like:



        r".*(a.*b.*c|a.*c.*b|b.*a.*c|b.*c.*a|c.*a.*b|c.*b.*a).*"



        https://regex101.com/r/OnXQe7/1/



        This checks for an a, any set of characters, a b, any set of characters, then a c, OR an a, any set of characters, a c, any set of characters, then a b, OR...you get the idea.



        You could use the same approach to check for the standard meaning of perfect pangram (every character exactly once), but not the modified version used here.






        share|improve this answer














        Assuming you're using a flavor of regex that include look-aheads, detecting a pangram is straightforward, but tedious. Using Python syntax:



        r"(?=.*a)(?=.*b)(?=.*c)(?=.*d)(?=.*e)(?=.*f)(?=.*g)(?=.*h)(?=.*i)(?=.*j)(?=.*k)(?=.*l)(?=.*m)(?=.*n)(?=.*o)(?=.*p)(?=.*q)(?=.*r)(?=.*s)(?=.*t)(?=.*u)(?=.*v)(?=.*w)(?=.*x)(?=.*y)(?=.*z).*"



        https://regex101.com/r/Z7NjEQ/2



        The (?=.*a) block tests if what follows after that point matches .*a; another way to say that is, is this expression followed by any characters and then an a, or just, does this include an a? Then repeat that check for every letter of the alphabet.



        Without lookaheads, it's still possible, but even more tedious, because you have to account for every possible ordering of the alphabet. If you were limited to the letters abc, here's what it might look like:



        r".*(a.*b.*c|a.*c.*b|b.*a.*c|b.*c.*a|c.*a.*b|c.*b.*a).*"



        https://regex101.com/r/OnXQe7/1/



        This checks for an a, any set of characters, a b, any set of characters, then a c, OR an a, any set of characters, a c, any set of characters, then a b, OR...you get the idea.



        You could use the same approach to check for the standard meaning of perfect pangram (every character exactly once), but not the modified version used here.







        share|improve this answer














        share|improve this answer



        share|improve this answer








        edited 4 hours ago

























        answered 4 hours ago









        Jack Brounstein

        36116




        36116




















            up vote
            0
            down vote













            Regexp: 45 43 20 19 18 bytes



            (?!.*(.).*1).26


            Assuming the input is [a-z] (lowercase, only alphabets a to z, spaces etc removed)



            A byte saved, thanks to Neil






            share|improve this answer


















            • 1




              If you're assuming the input format then . instead of w?
              – Neil
              3 hours ago










            • Better to ask for confirmation/clarification rather than assuming anything.
              – Shaggy
              3 hours ago










            • @Neil oh, thanks, stupid me
              – FatalError
              2 hours ago










            • @Shaggy "You can assume that all non-alpha characters have already been stripped out", just notified about the assumption
              – FatalError
              2 hours ago










            • This doesn’t work for either the regular challenge or the bonus. Doesn’t match thequickbrownfoxjumpsoverthelazydog (regular pangram) or squdgykil... (the bonus).
              – FrownyFrog
              1 hour ago














            up vote
            0
            down vote













            Regexp: 45 43 20 19 18 bytes



            (?!.*(.).*1).26


            Assuming the input is [a-z] (lowercase, only alphabets a to z, spaces etc removed)



            A byte saved, thanks to Neil






            share|improve this answer


















            • 1




              If you're assuming the input format then . instead of w?
              – Neil
              3 hours ago










            • Better to ask for confirmation/clarification rather than assuming anything.
              – Shaggy
              3 hours ago










            • @Neil oh, thanks, stupid me
              – FatalError
              2 hours ago










            • @Shaggy "You can assume that all non-alpha characters have already been stripped out", just notified about the assumption
              – FatalError
              2 hours ago










            • This doesn’t work for either the regular challenge or the bonus. Doesn’t match thequickbrownfoxjumpsoverthelazydog (regular pangram) or squdgykil... (the bonus).
              – FrownyFrog
              1 hour ago












            up vote
            0
            down vote










            up vote
            0
            down vote









            Regexp: 45 43 20 19 18 bytes



            (?!.*(.).*1).26


            Assuming the input is [a-z] (lowercase, only alphabets a to z, spaces etc removed)



            A byte saved, thanks to Neil






            share|improve this answer














            Regexp: 45 43 20 19 18 bytes



            (?!.*(.).*1).26


            Assuming the input is [a-z] (lowercase, only alphabets a to z, spaces etc removed)



            A byte saved, thanks to Neil







            share|improve this answer














            share|improve this answer



            share|improve this answer








            edited 2 hours ago

























            answered 3 hours ago









            FatalError

            592




            592







            • 1




              If you're assuming the input format then . instead of w?
              – Neil
              3 hours ago










            • Better to ask for confirmation/clarification rather than assuming anything.
              – Shaggy
              3 hours ago










            • @Neil oh, thanks, stupid me
              – FatalError
              2 hours ago










            • @Shaggy "You can assume that all non-alpha characters have already been stripped out", just notified about the assumption
              – FatalError
              2 hours ago










            • This doesn’t work for either the regular challenge or the bonus. Doesn’t match thequickbrownfoxjumpsoverthelazydog (regular pangram) or squdgykil... (the bonus).
              – FrownyFrog
              1 hour ago












            • 1




              If you're assuming the input format then . instead of w?
              – Neil
              3 hours ago










            • Better to ask for confirmation/clarification rather than assuming anything.
              – Shaggy
              3 hours ago










            • @Neil oh, thanks, stupid me
              – FatalError
              2 hours ago










            • @Shaggy "You can assume that all non-alpha characters have already been stripped out", just notified about the assumption
              – FatalError
              2 hours ago










            • This doesn’t work for either the regular challenge or the bonus. Doesn’t match thequickbrownfoxjumpsoverthelazydog (regular pangram) or squdgykil... (the bonus).
              – FrownyFrog
              1 hour ago







            1




            1




            If you're assuming the input format then . instead of w?
            – Neil
            3 hours ago




            If you're assuming the input format then . instead of w?
            – Neil
            3 hours ago












            Better to ask for confirmation/clarification rather than assuming anything.
            – Shaggy
            3 hours ago




            Better to ask for confirmation/clarification rather than assuming anything.
            – Shaggy
            3 hours ago












            @Neil oh, thanks, stupid me
            – FatalError
            2 hours ago




            @Neil oh, thanks, stupid me
            – FatalError
            2 hours ago












            @Shaggy "You can assume that all non-alpha characters have already been stripped out", just notified about the assumption
            – FatalError
            2 hours ago




            @Shaggy "You can assume that all non-alpha characters have already been stripped out", just notified about the assumption
            – FatalError
            2 hours ago












            This doesn’t work for either the regular challenge or the bonus. Doesn’t match thequickbrownfoxjumpsoverthelazydog (regular pangram) or squdgykil... (the bonus).
            – FrownyFrog
            1 hour ago




            This doesn’t work for either the regular challenge or the bonus. Doesn’t match thequickbrownfoxjumpsoverthelazydog (regular pangram) or squdgykil... (the bonus).
            – FrownyFrog
            1 hour ago

















             

            draft saved


            draft discarded















































             


            draft saved


            draft discarded














            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fcodegolf.stackexchange.com%2fquestions%2f172809%2fregular-expression-to-find-a-pangram%23new-answer', 'question_page');

            );

            Post as a guest













































































            Comments

            Popular posts from this blog

            Long meetings (6-7 hours a day): Being “babysat” by supervisor

            Is the Concept of Multiple Fantasy Races Scientifically Flawed? [closed]

            Confectionery