You’re working on software that analyzes sports players. Following are two arrays of players of different sports: basketball_players = [ {first_name: "Jill", last_name: "Huang", team: "Gators"}, {first_name: "Janko", last_name: "Barton", team: "Sharks"}, {first_name: "Wanda", last_name: "Vakulskas", team: "Sharks"}, {first_name: "Jill", last_name: "Moloney", team: "Gators"}, {first_name: "Luuk", last_name: "Watkins", team: "Gators"} ] football_players = [ {first_name: "Hanzla", last_name: "Radosti", team: "32ers"}, {first_name: "Tina", last_name: "Watkins", team: "Barleycorns"}, {first_name: "Alex", last_name: "Patel", team: "32ers"}, {first_name: "Jill", last_name: "Huang", team: "Barleycorns"}, {first_name: "Wanda", last_name: "Vakulskas", team: "Barleycorns"} ] You are to write a function that accepts two arrays of players and returns an array of the players who play in both sports. In this case, that would be: ["Jill Huang", "Wanda Vakulskas"] We can use a nested-loops approach, comparing each player from one array against each player from the other array, but this would have a runtime of O(N∗M). Your job is to optimize the function so that it can run just O(N+M).

EBK JAVA PROGRAMMING
9th Edition
ISBN:9781337671385
Author:FARRELL
Publisher:FARRELL
Chapter8: Arrays
Section: Chapter Questions
Problem 9PE
icon
Related questions
Question

You’re working on software that analyzes sports players. Following are two arrays of players of different sports:

basketball_players = [ {first_name: "Jill", last_name: "Huang", team: "Gators"}, {first_name: "Janko", last_name: "Barton", team: "Sharks"}, {first_name: "Wanda", last_name: "Vakulskas", team: "Sharks"}, {first_name: "Jill", last_name: "Moloney", team: "Gators"}, {first_name: "Luuk", last_name: "Watkins", team: "Gators"} ] football_players = [ {first_name: "Hanzla", last_name: "Radosti", team: "32ers"}, {first_name: "Tina", last_name: "Watkins", team: "Barleycorns"}, {first_name: "Alex", last_name: "Patel", team: "32ers"}, {first_name: "Jill", last_name: "Huang", team: "Barleycorns"}, {first_name: "Wanda", last_name: "Vakulskas", team: "Barleycorns"} ]

You are to write a function that accepts two arrays of players and returns an array of the players who play in both sports. In this case, that would be:

["Jill Huang", "Wanda Vakulskas"]

We can use a nested-loops approach, comparing each player from one array against each player from the other array, but this would have a runtime of O(N∗M).

Your job is to optimize the function so that it can run just O(N+M).

Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 6 steps with 2 images

Blurred answer
Follow-up Questions
Read through expert solutions to related follow-up questions below.
Follow-up Question

Hello, I would appreciate if this code be written in C++.

Solution
Bartleby Expert
SEE SOLUTION
Knowledge Booster
Array
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
EBK JAVA PROGRAMMING
EBK JAVA PROGRAMMING
Computer Science
ISBN:
9781337671385
Author:
FARRELL
Publisher:
CENGAGE LEARNING - CONSIGNMENT