Cerinta completa

Given two arrays of integers, find which elements in the second array are missing from the first array.

Example

The array is the orginal list. The numbers missing are .

Notes

  • If a number occurs multiple times in the lists, you must ensure that the frequency of that number in both lists is the same. If that is not the case, then it is also a missing number.
  • Return the missing numbers sorted ascending.
  • Only include a missing number once, even if it is missing multiple times.
  • The difference between the maximum and minimum numbers in the original list is less than or equal to .

Function Description

Complete the missingNumbers function in the editor below. It should return a sorted array of missing numbers.

missingNumbers has the following parameter(s):

  • int arr[n]: the array with missing numbers
  • int brr[m]: the original array of numbers

Returns

  • int[]: an array of integers

Input Format

There will be four lines of input:

– the size of the first list,
The next line contains space-separated integers
– the size of the second list,
The next line contains space-separated integers

Constraints

Sample Input

10
203 204 205 206 207 208 203 204 205 206
13
203 204 204 205 206 207 205 208 203 206 205 206 204

Sample Output

204 205 206

Explanation

is present in both arrays. Its frequency in is , while its frequency in is . Similarly, and occur twice in , but three times in . The rest of the numbers have the same frequencies in both lists.


Limbajul de programare folosit: java8

Cod:

import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.Scanner;
import java.util.stream.Collectors;

public class Solution {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);

		int[] list1 = readList(sc);
		int[] list2 = readList(sc);

		System.out.println(solve(list1, list2).stream().map(String::valueOf).collect(Collectors.joining(" ")));

		sc.close();
	}

	static List<Integer> solve(int[] list1, int[] list2) {
		Map<Integer, Integer> numberToCount1 = buildNumberToCount(list1);
		Map<Integer, Integer> numberToCount2 = buildNumberToCount(list2);

		return numberToCount2.keySet().stream()
				.filter(number -> numberToCount2.get(number) > numberToCount1.getOrDefault(number, 0)).sorted()
				.collect(Collectors.toList());
	}

	static int[] readList(Scanner sc) {
		int size = sc.nextInt();
		int[] list = new int[size];
		for (int i = 0; i < list.length; i++) {
			list[i] = sc.nextInt();
		}
		return list;
	}

	static Map<Integer, Integer> buildNumberToCount(int[] list) {
		Map<Integer, Integer> numberToCount = new HashMap<>();
		for (int number : list) {
			numberToCount.put(number, numberToCount.getOrDefault(number, 0) + 1);
		}
		return numberToCount;
	}
}

Scor obtinut: 1.0

Submission ID: 464602846

Link challenge: https://www.hackerrank.com/challenges/missing-numbers/problem

Missing Numbers