Jump to content

find edges of vertices and sum of values at the edges' endpoints ?


fenil

Recommended Posts

Given N = 4, A = [1, 3], B = [2, 4] function should return 10. The graph contains two edges: (1, 2) and (3, 4). We can assign following values to the vertices: 4, 3, 2, 1.

 The sum of values at the edges' endpoints is (4 + 3) + (2 + 1) = 10.

image.png.822dc09072095fbdc5a86a1944537bce.png

 how to find edges of vertices and sum of values at the edges' endpoints ?

 

function ec($n, array $a, array $b){  }

Link to comment
Share on other sites

  • Barand locked this topic
Guest
This topic is now closed to further replies.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.