Google Codejam 2017 - Fashion Show using bipartite matching












-1












$begingroup$



https://code.google.com/codejam/contest/3264486/dashboard#s=p3&a=3



Problem



You are about to host a fashion show to show off three new
styles of clothing. The show will be held on a stage which is in the
most fashionable of all shapes: an N-by-N grid of cells.



Each cell in the grid can be empty (which we represent with a .
character) or can contain one fashion model. The models come in three
types, depending on the clothing style they are wearing: +, x, and the
super-trendy o. A cell with a + or x model in it adds 1 style point to
the show. A cell with an o model in it adds 2 style points. Empty
cells add no style points.



To achieve the maximum artistic effect, there are rules on how models
can be placed relative to each other.



Whenever any two models share a row or column, at least one of the two
must be a +. Whenever any two models share a diagonal of the grid, at
least one of the two must be an x. Formally, a model located in row i0
and column j0 and a model located in row i1 and column j1 share a row
if and only if i0 = i1, they share a column if and only if j0 = j1,
and they share a diagonal if and only if i0 + j0 = i1 + j1 or i0 - j0
= i1 - j1.



For example, the following grid is not legal:



... 
x+o
.+.


The middle row has a pair of models (x and o) that does
not include a +. The diagonal starting at the + in the bottom row and
running up to the o in the middle row has two models, and neither of
them is an x.



However, the following grid is legal. No row, column, or diagonal
violates the rules.



+.x
+x+
o..


Your artistic advisor has already placed M models in certain cells, following these rules. You are free to place any number
(including zero) of additional models of whichever types you like. You
may not remove existing models, but you may upgrade as many existing +
and x models into o models as you wish, as long as the above rules are
not violated.



Your task is to find a legal way of placing and/or upgrading models
that earns the maximum possible number of style points.



Input



The first line of the input gives the number of test cases, T. T
test cases follow. Each test case begins with one line with two
integers N and M, as described above. Then, M more lines follow; the
i-th of these lines has a +, x, or o character (the type of the model)
and two integers Ri and Ci (the position of the model). The rows of
the grid are numbered 1 through N, from top to bottom. The columns of
the grid are numbered 1 through N, from left to right.



Output



For each test case, first output one line containing Case #x: y
z, where x is the test case number (starting from 1), y is the number
of style points earned in your arrangement, and z is the total number
of models you have added and/or substituted in. Then, for each model
that you have added or substituted in, output exactly one line in
exactly the same format described in the Input section, where the
character is the type of the model that you have added or substituted
in. These z lines can be in any order.



If there are multiple valid answers, you may output any one of them.



Limits



1 ≤ T ≤ 100. 1 ≤ N ≤ 100. 1 ≤ Ci ≤ N, for all i. 0 ≤ M ≤ N2. No
two pre-placed models appear in the same cell. It is guaranteed that
the set of pre-placed models follows the rules. Small dataset Ri = 1,
for all i. (Any models that are pre-placed are in the top row. Note
that you may add/replace models in that row and/or add models in other
rows.) Large dataset 1 ≤ Ri ≤ N, for all i. Sample



Input   
3 2
0 1 1
o 1 1
3 4
+ 2 3
+ 2 1
x 3 1
+ 2 2


Output
Case #1: 4 3
o 2 2
+ 2 1
x 1 1
Case #2: 2 0
Case #3: 6 2
o 2 3
x 1 2


The sample output displays one set of answers to the sample cases.
Other answers may be possible. Note that the last sample case would
not appear in the Small dataset.



In sample case #1, the grid is 2-by-2 and is initially blank. The
output corresponds to the following grid. (In these explanations, we
will use . to denote a blank cell.)



x.
+o In sample case #2, the only cell is already occupied by an o model, and it is impossible to add a new model or replace the o model.



In sample case #3, the grid looks like this before you place any
models:



...    
+++
x..


The output corresponds to this grid:



.x.
++o
x..



I solved the small dataset using this algorithm from the solution analysis:




In the Small dataset, any pre-placed pieces are all in the top row.
Observe that bishops in the same row or column cannot possibly
"threaten" each other, and so we can safely add a bishop to any top
row cell that does not already have one. So, if we can come up with a
general solution pattern in which the top row is always completely
filled with bishops, then we can solve any Small test case, because we
can safely turn any pre-placed arrangement into a row packed with
bishops.



Once the top row is filled with bishops, where else on the board
should we put them? The bottom row is farthest away from the
constraints imposed by the top row, and we can try putting a bishop in
every bottom-row cell except for the cells on either end (which are
"threatened" by the bishops at the two ends of the top row).




This algorithm fails with the large dataset because any pre-placed pieces are NOT all in the top row anymore.



In the solution analysis of the 4th question of qualification round of Codejam 2017, it is written that to solve the large dataset:




"You can use a bipartite matching algorithm to place the bishops
optimally."




It does not explain further how to implement that. I don't quite understand how to implement bipartite matching on this problem. What exactly are we matching?









share







New contributor




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







$endgroup$

















    -1












    $begingroup$



    https://code.google.com/codejam/contest/3264486/dashboard#s=p3&a=3



    Problem



    You are about to host a fashion show to show off three new
    styles of clothing. The show will be held on a stage which is in the
    most fashionable of all shapes: an N-by-N grid of cells.



    Each cell in the grid can be empty (which we represent with a .
    character) or can contain one fashion model. The models come in three
    types, depending on the clothing style they are wearing: +, x, and the
    super-trendy o. A cell with a + or x model in it adds 1 style point to
    the show. A cell with an o model in it adds 2 style points. Empty
    cells add no style points.



    To achieve the maximum artistic effect, there are rules on how models
    can be placed relative to each other.



    Whenever any two models share a row or column, at least one of the two
    must be a +. Whenever any two models share a diagonal of the grid, at
    least one of the two must be an x. Formally, a model located in row i0
    and column j0 and a model located in row i1 and column j1 share a row
    if and only if i0 = i1, they share a column if and only if j0 = j1,
    and they share a diagonal if and only if i0 + j0 = i1 + j1 or i0 - j0
    = i1 - j1.



    For example, the following grid is not legal:



    ... 
    x+o
    .+.


    The middle row has a pair of models (x and o) that does
    not include a +. The diagonal starting at the + in the bottom row and
    running up to the o in the middle row has two models, and neither of
    them is an x.



    However, the following grid is legal. No row, column, or diagonal
    violates the rules.



    +.x
    +x+
    o..


    Your artistic advisor has already placed M models in certain cells, following these rules. You are free to place any number
    (including zero) of additional models of whichever types you like. You
    may not remove existing models, but you may upgrade as many existing +
    and x models into o models as you wish, as long as the above rules are
    not violated.



    Your task is to find a legal way of placing and/or upgrading models
    that earns the maximum possible number of style points.



    Input



    The first line of the input gives the number of test cases, T. T
    test cases follow. Each test case begins with one line with two
    integers N and M, as described above. Then, M more lines follow; the
    i-th of these lines has a +, x, or o character (the type of the model)
    and two integers Ri and Ci (the position of the model). The rows of
    the grid are numbered 1 through N, from top to bottom. The columns of
    the grid are numbered 1 through N, from left to right.



    Output



    For each test case, first output one line containing Case #x: y
    z, where x is the test case number (starting from 1), y is the number
    of style points earned in your arrangement, and z is the total number
    of models you have added and/or substituted in. Then, for each model
    that you have added or substituted in, output exactly one line in
    exactly the same format described in the Input section, where the
    character is the type of the model that you have added or substituted
    in. These z lines can be in any order.



    If there are multiple valid answers, you may output any one of them.



    Limits



    1 ≤ T ≤ 100. 1 ≤ N ≤ 100. 1 ≤ Ci ≤ N, for all i. 0 ≤ M ≤ N2. No
    two pre-placed models appear in the same cell. It is guaranteed that
    the set of pre-placed models follows the rules. Small dataset Ri = 1,
    for all i. (Any models that are pre-placed are in the top row. Note
    that you may add/replace models in that row and/or add models in other
    rows.) Large dataset 1 ≤ Ri ≤ N, for all i. Sample



    Input   
    3 2
    0 1 1
    o 1 1
    3 4
    + 2 3
    + 2 1
    x 3 1
    + 2 2


    Output
    Case #1: 4 3
    o 2 2
    + 2 1
    x 1 1
    Case #2: 2 0
    Case #3: 6 2
    o 2 3
    x 1 2


    The sample output displays one set of answers to the sample cases.
    Other answers may be possible. Note that the last sample case would
    not appear in the Small dataset.



    In sample case #1, the grid is 2-by-2 and is initially blank. The
    output corresponds to the following grid. (In these explanations, we
    will use . to denote a blank cell.)



    x.
    +o In sample case #2, the only cell is already occupied by an o model, and it is impossible to add a new model or replace the o model.



    In sample case #3, the grid looks like this before you place any
    models:



    ...    
    +++
    x..


    The output corresponds to this grid:



    .x.
    ++o
    x..



    I solved the small dataset using this algorithm from the solution analysis:




    In the Small dataset, any pre-placed pieces are all in the top row.
    Observe that bishops in the same row or column cannot possibly
    "threaten" each other, and so we can safely add a bishop to any top
    row cell that does not already have one. So, if we can come up with a
    general solution pattern in which the top row is always completely
    filled with bishops, then we can solve any Small test case, because we
    can safely turn any pre-placed arrangement into a row packed with
    bishops.



    Once the top row is filled with bishops, where else on the board
    should we put them? The bottom row is farthest away from the
    constraints imposed by the top row, and we can try putting a bishop in
    every bottom-row cell except for the cells on either end (which are
    "threatened" by the bishops at the two ends of the top row).




    This algorithm fails with the large dataset because any pre-placed pieces are NOT all in the top row anymore.



    In the solution analysis of the 4th question of qualification round of Codejam 2017, it is written that to solve the large dataset:




    "You can use a bipartite matching algorithm to place the bishops
    optimally."




    It does not explain further how to implement that. I don't quite understand how to implement bipartite matching on this problem. What exactly are we matching?









    share







    New contributor




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







    $endgroup$















      -1












      -1








      -1





      $begingroup$



      https://code.google.com/codejam/contest/3264486/dashboard#s=p3&a=3



      Problem



      You are about to host a fashion show to show off three new
      styles of clothing. The show will be held on a stage which is in the
      most fashionable of all shapes: an N-by-N grid of cells.



      Each cell in the grid can be empty (which we represent with a .
      character) or can contain one fashion model. The models come in three
      types, depending on the clothing style they are wearing: +, x, and the
      super-trendy o. A cell with a + or x model in it adds 1 style point to
      the show. A cell with an o model in it adds 2 style points. Empty
      cells add no style points.



      To achieve the maximum artistic effect, there are rules on how models
      can be placed relative to each other.



      Whenever any two models share a row or column, at least one of the two
      must be a +. Whenever any two models share a diagonal of the grid, at
      least one of the two must be an x. Formally, a model located in row i0
      and column j0 and a model located in row i1 and column j1 share a row
      if and only if i0 = i1, they share a column if and only if j0 = j1,
      and they share a diagonal if and only if i0 + j0 = i1 + j1 or i0 - j0
      = i1 - j1.



      For example, the following grid is not legal:



      ... 
      x+o
      .+.


      The middle row has a pair of models (x and o) that does
      not include a +. The diagonal starting at the + in the bottom row and
      running up to the o in the middle row has two models, and neither of
      them is an x.



      However, the following grid is legal. No row, column, or diagonal
      violates the rules.



      +.x
      +x+
      o..


      Your artistic advisor has already placed M models in certain cells, following these rules. You are free to place any number
      (including zero) of additional models of whichever types you like. You
      may not remove existing models, but you may upgrade as many existing +
      and x models into o models as you wish, as long as the above rules are
      not violated.



      Your task is to find a legal way of placing and/or upgrading models
      that earns the maximum possible number of style points.



      Input



      The first line of the input gives the number of test cases, T. T
      test cases follow. Each test case begins with one line with two
      integers N and M, as described above. Then, M more lines follow; the
      i-th of these lines has a +, x, or o character (the type of the model)
      and two integers Ri and Ci (the position of the model). The rows of
      the grid are numbered 1 through N, from top to bottom. The columns of
      the grid are numbered 1 through N, from left to right.



      Output



      For each test case, first output one line containing Case #x: y
      z, where x is the test case number (starting from 1), y is the number
      of style points earned in your arrangement, and z is the total number
      of models you have added and/or substituted in. Then, for each model
      that you have added or substituted in, output exactly one line in
      exactly the same format described in the Input section, where the
      character is the type of the model that you have added or substituted
      in. These z lines can be in any order.



      If there are multiple valid answers, you may output any one of them.



      Limits



      1 ≤ T ≤ 100. 1 ≤ N ≤ 100. 1 ≤ Ci ≤ N, for all i. 0 ≤ M ≤ N2. No
      two pre-placed models appear in the same cell. It is guaranteed that
      the set of pre-placed models follows the rules. Small dataset Ri = 1,
      for all i. (Any models that are pre-placed are in the top row. Note
      that you may add/replace models in that row and/or add models in other
      rows.) Large dataset 1 ≤ Ri ≤ N, for all i. Sample



      Input   
      3 2
      0 1 1
      o 1 1
      3 4
      + 2 3
      + 2 1
      x 3 1
      + 2 2


      Output
      Case #1: 4 3
      o 2 2
      + 2 1
      x 1 1
      Case #2: 2 0
      Case #3: 6 2
      o 2 3
      x 1 2


      The sample output displays one set of answers to the sample cases.
      Other answers may be possible. Note that the last sample case would
      not appear in the Small dataset.



      In sample case #1, the grid is 2-by-2 and is initially blank. The
      output corresponds to the following grid. (In these explanations, we
      will use . to denote a blank cell.)



      x.
      +o In sample case #2, the only cell is already occupied by an o model, and it is impossible to add a new model or replace the o model.



      In sample case #3, the grid looks like this before you place any
      models:



      ...    
      +++
      x..


      The output corresponds to this grid:



      .x.
      ++o
      x..



      I solved the small dataset using this algorithm from the solution analysis:




      In the Small dataset, any pre-placed pieces are all in the top row.
      Observe that bishops in the same row or column cannot possibly
      "threaten" each other, and so we can safely add a bishop to any top
      row cell that does not already have one. So, if we can come up with a
      general solution pattern in which the top row is always completely
      filled with bishops, then we can solve any Small test case, because we
      can safely turn any pre-placed arrangement into a row packed with
      bishops.



      Once the top row is filled with bishops, where else on the board
      should we put them? The bottom row is farthest away from the
      constraints imposed by the top row, and we can try putting a bishop in
      every bottom-row cell except for the cells on either end (which are
      "threatened" by the bishops at the two ends of the top row).




      This algorithm fails with the large dataset because any pre-placed pieces are NOT all in the top row anymore.



      In the solution analysis of the 4th question of qualification round of Codejam 2017, it is written that to solve the large dataset:




      "You can use a bipartite matching algorithm to place the bishops
      optimally."




      It does not explain further how to implement that. I don't quite understand how to implement bipartite matching on this problem. What exactly are we matching?









      share







      New contributor




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







      $endgroup$





      https://code.google.com/codejam/contest/3264486/dashboard#s=p3&a=3



      Problem



      You are about to host a fashion show to show off three new
      styles of clothing. The show will be held on a stage which is in the
      most fashionable of all shapes: an N-by-N grid of cells.



      Each cell in the grid can be empty (which we represent with a .
      character) or can contain one fashion model. The models come in three
      types, depending on the clothing style they are wearing: +, x, and the
      super-trendy o. A cell with a + or x model in it adds 1 style point to
      the show. A cell with an o model in it adds 2 style points. Empty
      cells add no style points.



      To achieve the maximum artistic effect, there are rules on how models
      can be placed relative to each other.



      Whenever any two models share a row or column, at least one of the two
      must be a +. Whenever any two models share a diagonal of the grid, at
      least one of the two must be an x. Formally, a model located in row i0
      and column j0 and a model located in row i1 and column j1 share a row
      if and only if i0 = i1, they share a column if and only if j0 = j1,
      and they share a diagonal if and only if i0 + j0 = i1 + j1 or i0 - j0
      = i1 - j1.



      For example, the following grid is not legal:



      ... 
      x+o
      .+.


      The middle row has a pair of models (x and o) that does
      not include a +. The diagonal starting at the + in the bottom row and
      running up to the o in the middle row has two models, and neither of
      them is an x.



      However, the following grid is legal. No row, column, or diagonal
      violates the rules.



      +.x
      +x+
      o..


      Your artistic advisor has already placed M models in certain cells, following these rules. You are free to place any number
      (including zero) of additional models of whichever types you like. You
      may not remove existing models, but you may upgrade as many existing +
      and x models into o models as you wish, as long as the above rules are
      not violated.



      Your task is to find a legal way of placing and/or upgrading models
      that earns the maximum possible number of style points.



      Input



      The first line of the input gives the number of test cases, T. T
      test cases follow. Each test case begins with one line with two
      integers N and M, as described above. Then, M more lines follow; the
      i-th of these lines has a +, x, or o character (the type of the model)
      and two integers Ri and Ci (the position of the model). The rows of
      the grid are numbered 1 through N, from top to bottom. The columns of
      the grid are numbered 1 through N, from left to right.



      Output



      For each test case, first output one line containing Case #x: y
      z, where x is the test case number (starting from 1), y is the number
      of style points earned in your arrangement, and z is the total number
      of models you have added and/or substituted in. Then, for each model
      that you have added or substituted in, output exactly one line in
      exactly the same format described in the Input section, where the
      character is the type of the model that you have added or substituted
      in. These z lines can be in any order.



      If there are multiple valid answers, you may output any one of them.



      Limits



      1 ≤ T ≤ 100. 1 ≤ N ≤ 100. 1 ≤ Ci ≤ N, for all i. 0 ≤ M ≤ N2. No
      two pre-placed models appear in the same cell. It is guaranteed that
      the set of pre-placed models follows the rules. Small dataset Ri = 1,
      for all i. (Any models that are pre-placed are in the top row. Note
      that you may add/replace models in that row and/or add models in other
      rows.) Large dataset 1 ≤ Ri ≤ N, for all i. Sample



      Input   
      3 2
      0 1 1
      o 1 1
      3 4
      + 2 3
      + 2 1
      x 3 1
      + 2 2


      Output
      Case #1: 4 3
      o 2 2
      + 2 1
      x 1 1
      Case #2: 2 0
      Case #3: 6 2
      o 2 3
      x 1 2


      The sample output displays one set of answers to the sample cases.
      Other answers may be possible. Note that the last sample case would
      not appear in the Small dataset.



      In sample case #1, the grid is 2-by-2 and is initially blank. The
      output corresponds to the following grid. (In these explanations, we
      will use . to denote a blank cell.)



      x.
      +o In sample case #2, the only cell is already occupied by an o model, and it is impossible to add a new model or replace the o model.



      In sample case #3, the grid looks like this before you place any
      models:



      ...    
      +++
      x..


      The output corresponds to this grid:



      .x.
      ++o
      x..



      I solved the small dataset using this algorithm from the solution analysis:




      In the Small dataset, any pre-placed pieces are all in the top row.
      Observe that bishops in the same row or column cannot possibly
      "threaten" each other, and so we can safely add a bishop to any top
      row cell that does not already have one. So, if we can come up with a
      general solution pattern in which the top row is always completely
      filled with bishops, then we can solve any Small test case, because we
      can safely turn any pre-placed arrangement into a row packed with
      bishops.



      Once the top row is filled with bishops, where else on the board
      should we put them? The bottom row is farthest away from the
      constraints imposed by the top row, and we can try putting a bishop in
      every bottom-row cell except for the cells on either end (which are
      "threatened" by the bishops at the two ends of the top row).




      This algorithm fails with the large dataset because any pre-placed pieces are NOT all in the top row anymore.



      In the solution analysis of the 4th question of qualification round of Codejam 2017, it is written that to solve the large dataset:




      "You can use a bipartite matching algorithm to place the bishops
      optimally."




      It does not explain further how to implement that. I don't quite understand how to implement bipartite matching on this problem. What exactly are we matching?







      python algorithm programming-challenge





      share







      New contributor




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










      share







      New contributor




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








      share



      share






      New contributor




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









      asked 4 mins ago









      TSRTSR

      99




      99




      New contributor




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





      New contributor





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






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






















          0






          active

          oldest

          votes











          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: "196"
          };
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function() {
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled) {
          StackExchange.using("snippets", function() {
          createEditor();
          });
          }
          else {
          createEditor();
          }
          });

          function createEditor() {
          StackExchange.prepareEditor({
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: false,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: null,
          bindNavPrevention: true,
          postfix: "",
          imageUploader: {
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          },
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          });


          }
          });






          TSR 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%2fcodereview.stackexchange.com%2fquestions%2f215098%2fgoogle-codejam-2017-fashion-show-using-bipartite-matching%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown

























          0






          active

          oldest

          votes








          0






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes








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










          draft saved

          draft discarded


















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













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












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
















          Thanks for contributing an answer to Code Review Stack Exchange!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid



          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.


          Use MathJax to format equations. MathJax reference.


          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fcodereview.stackexchange.com%2fquestions%2f215098%2fgoogle-codejam-2017-fashion-show-using-bipartite-matching%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

          404 Error Contact Form 7 ajax form submitting

          How to know if a Active Directory user can login interactively

          TypeError: fit_transform() missing 1 required positional argument: 'X'