Skip to content

Instantly share code, notes, and snippets.

View adam-hanna's full-sized avatar
💭
breaking things...

Adam Hanna adam-hanna

💭
breaking things...
View GitHub Profile
@adam-hanna
adam-hanna / main.go
Created May 19, 2023 21:49
Group Membership
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 {