The number of goals achieved by two football teams in matches In a league Is given in the form of two lists. For each match of team B, compute the total number of matches of team A where team A has scored less than or equal to the number of goals scored by team B In that match. Example teamA = [1, 2, 3] teamB = [2, 4] %3D Team A has played three matches and has scored teamA = [1, 2, 3] goals in each match respectively. Team B has played two matches and has scored teamB = [2, 4] goals in each match respectively. For 2 goals scored by team B in its first match, team A has 2 matches with scores 1 and 2. For 4 goals scored by team B in its second match, team A has 3 matches with scores 1, 2 and 3. Hence, the answer is [2, 3]. Function Description Complete the function counts in the editor below. counts has the following parameter(s): int teamA[n]: first array of positive integers int teamB[m]: second array of positive Integers Return int[m]: an array of m positive integers, one for each teamB[i] representing the total number of elements from teamA[j] satisfylng teamA[j] s teamB[i] where 0 s j < nand 0si< m, in the given order. Constraints 2sn, m s 105 1 s teamA[j] s 10°, where 0 sj

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Question

i need solution in javascript

1. Football Scores
The number of goals achieved by two football teams In matches
in a league is given in the form of two lists. For each match of
team B, compute the total number of matches of team A where
team A has scored less than or equal to the number of goals
scored by team B in that match.
Example
teamA = [1, 2, 3]
teamB = [2, 4]
Team A has played three matches and has scored teamA = [1, 2,
3] goals in each match respectively. Team B has played two
matches and has scored teamB = [2, 4] goals in each match
respectively. For 2 goals scored by team B in its first match, team
A has 2 matches with scores 1 and 2. For 4 goals scored by team B
in its second match, team A has 3 matches with scores 1, 2 and 3.
Hence, the answer is [2, 3].
Function Description
Complete the function counts in the editor below.
counts has the following parameter(S):
int teamA[n]: first array of positive integers
int teamB[m]: second array of positive integers
Return
int[m): an array of m positive Integers, one for each
teamB[i] representing the total number of elements from
teamA[j] satisfylng teamA[j] < teamB[i] where 0 < j<nand 0si<
m, in the given order.
Constraints
• 2sn, m s 105
• 1steamA[j] s 10°, where 0 sj<n.
• 1s teamB[i] < 10°, where 0 si<m.
Transcribed Image Text:1. Football Scores The number of goals achieved by two football teams In matches in a league is given in the form of two lists. For each match of team B, compute the total number of matches of team A where team A has scored less than or equal to the number of goals scored by team B in that match. Example teamA = [1, 2, 3] teamB = [2, 4] Team A has played three matches and has scored teamA = [1, 2, 3] goals in each match respectively. Team B has played two matches and has scored teamB = [2, 4] goals in each match respectively. For 2 goals scored by team B in its first match, team A has 2 matches with scores 1 and 2. For 4 goals scored by team B in its second match, team A has 3 matches with scores 1, 2 and 3. Hence, the answer is [2, 3]. Function Description Complete the function counts in the editor below. counts has the following parameter(S): int teamA[n]: first array of positive integers int teamB[m]: second array of positive integers Return int[m): an array of m positive Integers, one for each teamB[i] representing the total number of elements from teamA[j] satisfylng teamA[j] < teamB[i] where 0 < j<nand 0si< m, in the given order. Constraints • 2sn, m s 105 • 1steamA[j] s 10°, where 0 sj<n. • 1s teamB[i] < 10°, where 0 si<m.
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 2 steps with 1 images

Blurred answer
Knowledge Booster
Function Arguments
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
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education