Finish the method definition below.
issues
is an array of hashes. Each hash has the keys "severity", "title" and "assignee".
Given issues
, the method should return a hash with the keys as unique values of the severity of the issues, and the values as array of names of assignees
with same severity
from issues
. The result should thereby be issue assignees grouped by their severity
.