calculate cyclomatic complexity of the code based on independent paths code example
Example: what is cyclomatic complexity
Cyclomatic complexity = E - N + 2*P
where,
E = number of edges in the flow graph.
N = number of nodes in the flow graph.
P = number of nodes that have exit points