python算法题–文件夹操作日志搜集器


python算法题--文件夹操作日志搜集器

class Solution:
    def minOperations(self, logs: List[str]) -> int:
        result=0
        for i in range(0,len(logs)):
            if logs[i]==’../’:
                if result>0:
                    result-=1
            elif logs[i]==’./’:
                continue
            else:
                result+=1
        return result

原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/288459.html

(0)
上一篇 2022年9月9日
下一篇 2022年9月9日

相关推荐

发表回复

登录后才能评论