1. Phone Book, Lab: Associative Arrays
Здравейте, колеги!
Разбирам, че решението на задачата го има в презентацията, но се опитвам да решавам задачите без да взимам готови решения и да използвам, доколкото е възможно методите map, filter, reduce. Ще се радвам ако някой успее да доразвие това решение.
https://pastebin.com/dM1Djr8p
1. Phone Book
Write a function that stores information about a person’s name and phone number. The input is an array of strings with space-separated name and number. Replace duplicate names. Print the result as shown.
Example
Input |
Output |
['Tim 0834212554', 'Peter 0877547887', 'Bill 0896543112', 'Tim 0876566344'] |
Tim -> 0876566344 Peter -> 0877547887 Bill -> 0896543112 |
['George 0552554', 'Peter 087587', 'George 0453112', 'Bill 0845344'] |
George -> 0453112 Peter -> 087587 Bill -> 0845344 |
За пореден път - благодаря!