Skip to content
Advertisement

Count how many pairs of a number appear in an array

Lets say with the array:

JavaScript

I want the output to be:

JavaScript

For that I created a Hash table. The code :

JavaScript

Not sure what to do next to print out the desired output. Been stuck in this simple part for a long time.

Advertisement

Answer

The calculation of frequencies seems to be fine, only printing part needs to be addressed. To get the number of pairs, divide the frequency by 2 (or shift right by 1), and skip if the pair count is 0 (according to the expected output).

Printing should be moved into a separate method:

JavaScript

However, Stream API may be used for such tasks:

  • use vararg int ... arr to pass the array of integer values in more convenient way (n as the array length is redundant)
  • use Collectors.groupingBy and Collectors.summingInt (or Collectors.counting) to calculate raw frequency
  • calculate the number of pairs
  • map each key-value pair into String
  • join the strings using Collectors.joining
JavaScript

Output (in both cases):

JavaScript
User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement