Jump to content

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


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){  }

Now it returns 10 again

function ec($n, array $a, array $b)
{
    return $n * $b[1] - $b[0] * $a[0] * $a[1] ;
}

echo ec( 4, [1,3], [2,4]);            // 10

If you post this topic again you will be banned.

  • Like 1
  • 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.