outdegrees
In graph theory, the outdegree of a vertex in a directed graph is the number of edges that originate at that vertex. Formally, a directed graph G = (V, E) assigns to each vertex v ∈ V a nonnegative integer outdeg(v) = |{(v, u) ∈ E : u ∈ V}|. Each outgoing edge contributes one to the outdegree, and multiple edges or parallel edges are counted separately. A loop from a vertex to itself contributes one to its outdegree as well.
Notation and representations commonly use deg+(v) or outdeg(v) to denote the outdegree. In an adjacency list,
Key properties include that the sum of outdegrees over all vertices equals the total number of edges