Can anyone please help me solve this problem

Revision en1, by helloIamCristiano, 2022-08-29 16:45:05

Given 2 arrays A and B of size m and n respectively. The array A is extended by concatenating n copies of A to itself and array B is extended by concatenating m copies of B to itself, thus the new size of each array is m*n. Find the sum abs(A[i]-B[i]) for i from 0 to m*n-1.

Constraints :-
A[i], B[i] <= 50 and Length of the arrays A, B < 1e5

History

 
 
 
 
Revisions
 
 
  Rev. Lang. By When Δ Comment
en1 English helloIamCristiano 2022-08-29 16:45:05 394 Initial revision (published)