Role Privilege Inheritance
Examples
Example 1:
Input: privileges = [["A"],["B"],["C"]], grants = [[0,1],[1,2]]
Output: [["A"],["A","B"],["A","B","C"]]
Explanation:
Example 2:
Input: privileges = [["READ"],["WRITE"],["DELETE"],["EXPORT"]], grants = [[0,2],[1,2],[2,3]]
Output: [["READ"],["WRITE"],["DELETE","READ","WRITE"],["DELETE","EXPORT","READ","WRITE"]]
Explanation: