HTMLify

LeetCode - Crawler Log Folder - Go
Views: 17 | Author: abh
func minOperations(logs []string) int {
    depth := 0
    for _, o := range logs {
        if o == "../" {
            if depth > 0 {
                depth--
            }
            continue
        }
        if o == "./" {
            continue
        }
        depth++
    }
    return depth
}

Comments