This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package main | |
| import ( | |
| "fmt" | |
| "strings" | |
| ) | |
| // A group's effective members include the members for the group itself as well as all of its children. Write a function to detect if a given user is an effective member of a given group. | |
| type Group struct { |
OlderNewer