func minOperations(logs []string) int {
depth := 0
for _, o := range logs {
if o == "../" {
if depth > 0 {
depth--
}
continue
}
if o == "./" {
continue
}
depth++
}
return depth
}