Iteratively checking array of array of stringsReview my prime factorization function. Is it complete?Python Port Scanner 2.0Typeahead Talent BuddyPython Octree ImplementationFlatten a nested dict structure in PythonYear 0: Instruction FollowerBytecode Interpreter for a custom programming languageFirstDuplicate FinderSystemd service configuration helper scriptDecomposing a matrix as a sum of two bitstrings

Explaining pyrokinesis powers

Instead of a Universal Basic Income program, why not implement a "Universal Basic Needs" program?

Why do passenger jet manufacturers design their planes with stall prevention systems?

A diagram about partial derivatives of f(x,y)

What's the meaning of a knight fighting a snail in medieval book illustrations?

How to make healing in an exploration game interesting

Could the Saturn V actually have launched astronauts around Venus?

Recruiter wants very extensive technical details about all of my previous work

Do I need life insurance if I can cover my own funeral costs?

What did “the good wine” (τὸν καλὸν οἶνον) mean in John 2:10?

When to use a slotted vs. solid turner?

Bach's Toccata and Fugue in D minor breaks the "no parallel octaves" rule?

Is it normal that my co-workers at a fitness company criticize my food choices?

Examples of transfinite towers

Min function accepting varying number of arguments in C++17

Happy pi day, everyone!

Book: Young man exiled to a penal colony, helps to lead revolution

ERC721: How to get the owned tokens of an address

Is it true that good novels will automatically sell themselves on Amazon (and so on) and there is no need for one to waste time promoting?

Math equation in non italic font

What is a ^ b and (a & b) << 1?

Different outputs for `w`, `who`, `whoami` and `id`

Is there a symmetric-key algorithm which we can use for creating a signature?

How to get the n-th line after a grepped one?



Iteratively checking array of array of strings


Review my prime factorization function. Is it complete?Python Port Scanner 2.0Typeahead Talent BuddyPython Octree ImplementationFlatten a nested dict structure in PythonYear 0: Instruction FollowerBytecode Interpreter for a custom programming languageFirstDuplicate FinderSystemd service configuration helper scriptDecomposing a matrix as a sum of two bitstrings













0












$begingroup$


The goal is to reduce the run-time of the operation, the function is working as intended but I'm struggling to make it more efficient larger inputs




You are given 2 arguments:



possible_criminals = [['9AheT-12=', 'Daniel', 'Lenny', '3512-6910',
'134.0', 'USD', 'M53'],
['zOvfqFxTWqQ=', 'Sylar', 'Seil', '1081-6760', '331.0', 'GBP', 'A46047']]



personal_information = [['Tzhq+56p=', 'Daniel', 'Lenny', '134.0',
'USD','M53', '37'],
['qWNmZankudw=', 'Sylar', 'Seil', '331.0', 'GBP', 'A46047', '676']]



Return an output (as an array of strings) that checks the arguments against each other in the
following format:



scanner(possible_criminals, personal_information) =
[['9AheT-12=', 'Tzhq+56p=', 'criminal'], ['zOvfqFxTWqQ=', 'qWNmZankudw=',
'criminal']]




def scanner(possible_criminals , personal_information)

'''
this problem can be simplified by understanding that the output
contains an array of 3 values
1) index[0] from argument 1
2) index[0] from argument 2
3) a value calculated by our function db_checker

steps to solve the problem:

- creating value 1) and 2) in output by extracting index 0 from given
arguments(possible_criminals , personal_information)

- "prepare" the arguments(possible_criminals , personal_information) for comparison
by sanitizing them:
- run "".lower() to account for case-insensitive matches
- pop unnecessary values

- calculating whether the arguments match by using a function
that compares possible_criminals with their personal_information
- function checks how many matches are there
'''


def db_checker(A, B):
counter = 0
for x in A:
if B.count(x) == 0:
counter += 1
if counter == 0:
return "criminal"
elif counter == 1:
return "possible"
elif counter == 2:
return "unlikely"
else:
return "none"

def init_output(N, M):
outputs = []
for i in range(len(N)):
output = []
output += [N[i].pop(0)] + [M[i].pop(0)]
outputs.append(output)
N[i].pop(2) # remove undesired values
M[i].pop(-1)
N[i] = [y.lower() for y in N[i]]
M[i] = [k.lower() for k in M[i]]
return outputs, N, M

# driver program
final = init_output(possible_criminals , personal_information )

for i in range(len(final[1])):
final[0][i].append(confidence_calculator(final[1][i], final[2][i]))
return final[0]

assert scanner(possible_criminals , personal_information) ==
[['9AheT-12=', 'Tzhq+56p=', 'criminal'], ['zOvfqFxTWqQ=', 'qWNmZankudw=', 'criminal']]








share









$endgroup$
















    0












    $begingroup$


    The goal is to reduce the run-time of the operation, the function is working as intended but I'm struggling to make it more efficient larger inputs




    You are given 2 arguments:



    possible_criminals = [['9AheT-12=', 'Daniel', 'Lenny', '3512-6910',
    '134.0', 'USD', 'M53'],
    ['zOvfqFxTWqQ=', 'Sylar', 'Seil', '1081-6760', '331.0', 'GBP', 'A46047']]



    personal_information = [['Tzhq+56p=', 'Daniel', 'Lenny', '134.0',
    'USD','M53', '37'],
    ['qWNmZankudw=', 'Sylar', 'Seil', '331.0', 'GBP', 'A46047', '676']]



    Return an output (as an array of strings) that checks the arguments against each other in the
    following format:



    scanner(possible_criminals, personal_information) =
    [['9AheT-12=', 'Tzhq+56p=', 'criminal'], ['zOvfqFxTWqQ=', 'qWNmZankudw=',
    'criminal']]




    def scanner(possible_criminals , personal_information)

    '''
    this problem can be simplified by understanding that the output
    contains an array of 3 values
    1) index[0] from argument 1
    2) index[0] from argument 2
    3) a value calculated by our function db_checker

    steps to solve the problem:

    - creating value 1) and 2) in output by extracting index 0 from given
    arguments(possible_criminals , personal_information)

    - "prepare" the arguments(possible_criminals , personal_information) for comparison
    by sanitizing them:
    - run "".lower() to account for case-insensitive matches
    - pop unnecessary values

    - calculating whether the arguments match by using a function
    that compares possible_criminals with their personal_information
    - function checks how many matches are there
    '''


    def db_checker(A, B):
    counter = 0
    for x in A:
    if B.count(x) == 0:
    counter += 1
    if counter == 0:
    return "criminal"
    elif counter == 1:
    return "possible"
    elif counter == 2:
    return "unlikely"
    else:
    return "none"

    def init_output(N, M):
    outputs = []
    for i in range(len(N)):
    output = []
    output += [N[i].pop(0)] + [M[i].pop(0)]
    outputs.append(output)
    N[i].pop(2) # remove undesired values
    M[i].pop(-1)
    N[i] = [y.lower() for y in N[i]]
    M[i] = [k.lower() for k in M[i]]
    return outputs, N, M

    # driver program
    final = init_output(possible_criminals , personal_information )

    for i in range(len(final[1])):
    final[0][i].append(confidence_calculator(final[1][i], final[2][i]))
    return final[0]

    assert scanner(possible_criminals , personal_information) ==
    [['9AheT-12=', 'Tzhq+56p=', 'criminal'], ['zOvfqFxTWqQ=', 'qWNmZankudw=', 'criminal']]








    share









    $endgroup$














      0












      0








      0





      $begingroup$


      The goal is to reduce the run-time of the operation, the function is working as intended but I'm struggling to make it more efficient larger inputs




      You are given 2 arguments:



      possible_criminals = [['9AheT-12=', 'Daniel', 'Lenny', '3512-6910',
      '134.0', 'USD', 'M53'],
      ['zOvfqFxTWqQ=', 'Sylar', 'Seil', '1081-6760', '331.0', 'GBP', 'A46047']]



      personal_information = [['Tzhq+56p=', 'Daniel', 'Lenny', '134.0',
      'USD','M53', '37'],
      ['qWNmZankudw=', 'Sylar', 'Seil', '331.0', 'GBP', 'A46047', '676']]



      Return an output (as an array of strings) that checks the arguments against each other in the
      following format:



      scanner(possible_criminals, personal_information) =
      [['9AheT-12=', 'Tzhq+56p=', 'criminal'], ['zOvfqFxTWqQ=', 'qWNmZankudw=',
      'criminal']]




      def scanner(possible_criminals , personal_information)

      '''
      this problem can be simplified by understanding that the output
      contains an array of 3 values
      1) index[0] from argument 1
      2) index[0] from argument 2
      3) a value calculated by our function db_checker

      steps to solve the problem:

      - creating value 1) and 2) in output by extracting index 0 from given
      arguments(possible_criminals , personal_information)

      - "prepare" the arguments(possible_criminals , personal_information) for comparison
      by sanitizing them:
      - run "".lower() to account for case-insensitive matches
      - pop unnecessary values

      - calculating whether the arguments match by using a function
      that compares possible_criminals with their personal_information
      - function checks how many matches are there
      '''


      def db_checker(A, B):
      counter = 0
      for x in A:
      if B.count(x) == 0:
      counter += 1
      if counter == 0:
      return "criminal"
      elif counter == 1:
      return "possible"
      elif counter == 2:
      return "unlikely"
      else:
      return "none"

      def init_output(N, M):
      outputs = []
      for i in range(len(N)):
      output = []
      output += [N[i].pop(0)] + [M[i].pop(0)]
      outputs.append(output)
      N[i].pop(2) # remove undesired values
      M[i].pop(-1)
      N[i] = [y.lower() for y in N[i]]
      M[i] = [k.lower() for k in M[i]]
      return outputs, N, M

      # driver program
      final = init_output(possible_criminals , personal_information )

      for i in range(len(final[1])):
      final[0][i].append(confidence_calculator(final[1][i], final[2][i]))
      return final[0]

      assert scanner(possible_criminals , personal_information) ==
      [['9AheT-12=', 'Tzhq+56p=', 'criminal'], ['zOvfqFxTWqQ=', 'qWNmZankudw=', 'criminal']]








      share









      $endgroup$




      The goal is to reduce the run-time of the operation, the function is working as intended but I'm struggling to make it more efficient larger inputs




      You are given 2 arguments:



      possible_criminals = [['9AheT-12=', 'Daniel', 'Lenny', '3512-6910',
      '134.0', 'USD', 'M53'],
      ['zOvfqFxTWqQ=', 'Sylar', 'Seil', '1081-6760', '331.0', 'GBP', 'A46047']]



      personal_information = [['Tzhq+56p=', 'Daniel', 'Lenny', '134.0',
      'USD','M53', '37'],
      ['qWNmZankudw=', 'Sylar', 'Seil', '331.0', 'GBP', 'A46047', '676']]



      Return an output (as an array of strings) that checks the arguments against each other in the
      following format:



      scanner(possible_criminals, personal_information) =
      [['9AheT-12=', 'Tzhq+56p=', 'criminal'], ['zOvfqFxTWqQ=', 'qWNmZankudw=',
      'criminal']]




      def scanner(possible_criminals , personal_information)

      '''
      this problem can be simplified by understanding that the output
      contains an array of 3 values
      1) index[0] from argument 1
      2) index[0] from argument 2
      3) a value calculated by our function db_checker

      steps to solve the problem:

      - creating value 1) and 2) in output by extracting index 0 from given
      arguments(possible_criminals , personal_information)

      - "prepare" the arguments(possible_criminals , personal_information) for comparison
      by sanitizing them:
      - run "".lower() to account for case-insensitive matches
      - pop unnecessary values

      - calculating whether the arguments match by using a function
      that compares possible_criminals with their personal_information
      - function checks how many matches are there
      '''


      def db_checker(A, B):
      counter = 0
      for x in A:
      if B.count(x) == 0:
      counter += 1
      if counter == 0:
      return "criminal"
      elif counter == 1:
      return "possible"
      elif counter == 2:
      return "unlikely"
      else:
      return "none"

      def init_output(N, M):
      outputs = []
      for i in range(len(N)):
      output = []
      output += [N[i].pop(0)] + [M[i].pop(0)]
      outputs.append(output)
      N[i].pop(2) # remove undesired values
      M[i].pop(-1)
      N[i] = [y.lower() for y in N[i]]
      M[i] = [k.lower() for k in M[i]]
      return outputs, N, M

      # driver program
      final = init_output(possible_criminals , personal_information )

      for i in range(len(final[1])):
      final[0][i].append(confidence_calculator(final[1][i], final[2][i]))
      return final[0]

      assert scanner(possible_criminals , personal_information) ==
      [['9AheT-12=', 'Tzhq+56p=', 'criminal'], ['zOvfqFxTWqQ=', 'qWNmZankudw=', 'criminal']]






      python formatting





      share












      share










      share



      share










      asked 8 mins ago









      sgezasgeza

      133




      133




















          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
          );



          );













          draft saved

          draft discarded


















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fcodereview.stackexchange.com%2fquestions%2f215591%2fiteratively-checking-array-of-array-of-strings%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















          draft saved

          draft discarded
















































          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%2f215591%2fiteratively-checking-array-of-array-of-strings%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

          कुँवर स्रोत दिक्चालन सूची"कुँवर""राणा कुँवरके वंशावली"

          Why is a white electrical wire connected to 2 black wires?How to wire a light fixture with 3 white wires in box?How should I wire a ceiling fan when there's only three wires in the box?Two white, two black, two ground, and red wire in ceiling box connected to switchWhy is there a white wire connected to multiple black wires in my light box?How to wire a light with two white wires and one black wireReplace light switch connected to a power outlet with dimmer - two black wires to one black and redHow to wire a light with multiple black/white/green wires from the ceiling?Ceiling box has 2 black and white wires but fan/ light only has 1 of eachWhy neutral wire connected to load wire?Switch with 2 black, 2 white, 2 ground and 1 red wire connected to ceiling light and a receptacle?

          चैत्य भूमि चित्र दीर्घा सन्दर्भ बाहरी कडियाँ दिक्चालन सूची"Chaitya Bhoomi""Chaitya Bhoomi: Statue of Equality in India""Dadar Chaitya Bhoomi: Statue of Equality in India""Ambedkar memorial: Centre okays transfer of Indu Mill land"चैत्यभमि