I have a String[][]. So it basically looks like this:
{
{ "Dublin", "NYC"},
{ "Moscow", "Los-Angeles"},
{ "London", "Paris" }
}
And I have to add them to Map, so that Keys will be first column(Dublin, Moscow, London), and Values will be second (NYC, LA, Paris)
Can you please help, I don't know where to start