You are given a two-dimensional list of integers graph
representing a directed graph as an adjacency list.
You are also given an integer target.
Return the length of a shortest cycle that contains target.
If a solution does not exist, return-1.
Constraints
n, m ≤ 250 where n and m are the number of rows and columns in graph Example 1 Input Visualize graph = [ [1], [2], [0] ] target = 0 Output 3 Explanation The nodes 0 -> 1 -> 2 -> 0 form a cycle