Team Formation Hackerrank | Julia

Author: neptune | 13th-Apr-2023
#Hackerrank

Team Formation Hackerrank | Julia

HackerRank is organising a chess tournament for its employees. There are n employees, having IDs 1, 2, n, where the employee has a rating of rating. Two employees can form a team if they have the same rating, and one employee can be in at most one team.


There are q queries, each of the form ( r). For each query, find the number of teams that can be formed from employees with IDs between / and r, inclusive. All queries are Independent of each other.


Example:

Consider n = 4 rating = [2, 3, 4, 2], q=2

queries = [[1,4],[3,4]]


For the first query, all employees are considered Employees with D's 1 and 4 can be teamed as their ratings are the seme There are no other team formations possible so the number of teams is For the second query, employees 3 and 4 are considered either ratings are [34] Since they are different ng teams can be formed. 50. The number of teams is 0.


The function is expected to return an INTEGER ARRAY. 


# The function accepts following parameters:

# 1. INTEGER ARRAY rating

# 2. 2D INTEGER ARRAY queries


Solution in Julia:

# Solution in Julia

 function countTeams(rating, queries)

    n = length(rating)

    results = []

    for query in queries

        l, r = query[1], query[2]

        seen = Dict{Int,Bool}()

        teams = 0

        for i in l:r

            if haskey(seen, rating[i]) && !seen[rating[i]]

                teams += 1

                seen[rating[i]] = true

            elseif !haskey(seen, rating[i])

                seen[rating[i]] = false

            end

        end

        push!(results, teams)

    end

    return results

end


println(countTeams([2, 3, 4, 2], [[1,4],[3,4]]))


Logic applied to solve this problem

The logic to solve the chess tournament problem is as follows:

  1. For each query, iterate over the range of employees specified in the query.

  2. For each employee, check if their rating has been seen before.

  3. If the rating has not been seen before, add it to the seen dictionary with a value of false.

  4. If the rating has been seen before and has not been added to a team yet (seen[rating[i]] == false), increment the teams count and mark the rating as added to a team in the seen dictionary by setting seen[rating[i]] = true.

  5. Return the total number of teams that can be formed for each query.

The idea is to use a dictionary to keep track of which ratings have been seen before and whether or not they have been added to a team. By checking this dictionary for each employee, we can determine whether or not they can be added to an existing team or whether they need to form a new team.




Related Blogs
5. Solution of Hacker Rank Weather Observation Station 8.
Author: neptune | 18th-Aug-2024
#SQL #Hackerrank
Query the list of CITY names from STATION which have vowels (i.e., a, e, i, o, and u) as both their first and last characters. Your result cannot contain duplicates...

The Blunder | Hackerrank
Author: neptune | 21st-Nov-2022
#SQL #Hackerrank
Write a query calculating the amount of error (i.e.: average monthly salaries), and round it up to the next integer...

7.Solution of Hacker Rank The Report
Author: neptune | 23rd-Jan-2023
#SQL #Hackerrank
Problem Statement : generate a report containing three columns: Name, Grade and Mark. Ketty doesn't want the NAMES of those students who received a grade lower than 8...

4. Solution of Hacker Rank Weather Observation Station 6.
Author: neptune | 23rd-Jan-2023
#SQL #Hackerrank
Query the list of CITY names starting with vowels (i.e., a, e, i, o, or u) from STATION. Your result cannot contain duplicates...

3. Solution of Hacker Rank Weather Observation Station 4.
Author: neptune | 23rd-Jan-2023
#SQL #Hackerrank
Problem Statement : Find the difference between the total number of CITY entries in the table and the number of distinct CITY entries in the table...

The PADS | Hackerrank
Author: neptune | 21st-Nov-2022
#SQL #Hackerrank
Problem Statement: Generate the following two result sets: 1. Query an alphabetically ordered list of all names in OCCUPATIONS, immediately followed by the first letter of each profession...

Identifying the Odd One Out in a Series of Strings | Hackerrank
Author: neptune | 15th-Jun-2023
#Hackerrank #Problem Solving
The article presents an algorithm to identify the odd one out in a series of strings efficiently...

6. Solution of Hacker Rank Employee Salaries.
Author: neptune | 23rd-Jan-2023
#SQL #Hackerrank
Problem Statement : Query that prints a list of employee names for employees in Employee having a salary greater than $2000 per month and experience less than 10 months...

1. Basic SQL Select Query of Hacker Rank.
Author: neptune | 20th-Apr-2022
#SQL #Hackerrank
Problem Statement : Query all columns for all American cities in the CITY table with populations larger than 100000. The CountryCode for America is USA...

Generate Fibonacci Sequence - JavaScript | Hackerank
Author: neptune | 07th-Apr-2023
#JavaScript #Hackerrank
Write a JavaScript function fibonacciSequence() to generate a FIbonacci sequence...

2. Solution of Hacker Rank Weather Observation Station 3.
Author: neptune | 23rd-Jan-2023
#SQL #Hackerrank
Problem Statement : Query a list of CITY names from STATION for cities that have an even ID number. Print the results in any order, but exclude duplicates from the answer...

Modified 0-1 knapsack problem | Frsco Play Hackerrank
Author: neptune | 05th-Nov-2023
#Hackerrank #Problem Solving
An automobile mechanic wants to buy a set of spare parts from a manufacturing unit. Goal is to maximise the amount of money the mechanic can earn...

Weather Observation Station 18 | Hackerrank
Author: neptune | 18th-Apr-2023
#SQL #Hackerrank
In this problem, we need to find the Manhattan Distance between two points P1(a,b) and P2(c,d)...

Solving the Ice Cream Parlor Problem | Hackerrank
Author: neptune | 04th-Jun-2023
#Hackerrank #Problem Solving
Two friends like to pool their money and go to the ice cream parlour. They always choose two distinct flavours and they spend all of their money...

AngularJS - Know Tech Frameworks | Fresco Play
Author: neptune | 05th-Nov-2023
#Hackerrank #Problem Solving
Build an application that displays the framework details using AngularJS routing. We will build an application that displays the Tech Frontend and Backend frameworks...

Top Earners | HackerRank
Author: neptune | 23rd-Nov-2022
#SQL #Hackerrank
Write a query to find the maximum total earnings for all employees as well as the total number of employees who have maximum total earnings...

Backspace String Compare using R | Fresco Play
Author: neptune | 05th-Nov-2023
#Hackerrank #Problem Solving
The code implementation in both R and Python solves the "Backspace String Compare" problem using stack data structure...

PySpark Milestone Black Friday Sales Data | Fresco Play Hackerrank
Author: neptune | 05th-Nov-2023
#Data Science #Hackerrank
Welcome to the Spark Challenge. You are provided with the Black Friday sales data and we as a big data developer needs to analyze and fetch the required data...

Python - Number Based Problem | Hackerrank
Author: neptune | 17th-Aug-2023
#Hackerrank #Problem Solving
Determine whether the number in descending order is a prime or not. If the number is a prime, then print "Sorted Number is a prime number," otherwise, print "Sorted Number is not a prime number."..

View More