Question: type Vertex = Int type Edge = ( Vertex , Vertex ) type Graph = [ Edge ] graph 1 :: Graph graph 1 =

type Vertex = Int
type Edge =(Vertex,Vertex)
type Graph =[Edge] graph1 :: Graph
graph1=[(1,2),(2,2),(2,4),(4,3),(3,3),(5,6),(6,5)] Write a haskell function called numVE that takes as input a graph and returns a tuple that represents the
number of vertices and number of edges

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!