Join Regular Classroom : Visit ClassroomTech

amdocs solved

Amdocs Coding Questions Solved | Question 3 | Codewindow.in

Question : In this task you will get an array of strings that contains words you are required to return a map will contain each unique word as a key and the number of occurrences of each word as a value. Example:Given the following array of strings:“hello”, “world”, “this”, “is”, “this”, “hello”you will return:“hello”,2“world”,1“this”,2“is”,1 Solution […]

Amdocs Coding Questions Solved | Question 3 | Codewindow.in Read More »

Amdocs Coding Questions Solved | Question 1 | Codewindow.in

Question : In this task, you are requested to merge two lists into a sorted list (sorting should be in an ascending order). The function should also remove any duplicated numbers.The function should also remove any duplicated numbers.The function should return the new sorted list. Example:list1 : [-1,1,3,5,7,9]list2: [-2,2,3,4,5,6] The function should return:[-2,-1,1,2,3,4,5,6,7,8,9]Note: assume the

Amdocs Coding Questions Solved | Question 1 | Codewindow.in Read More »