基于Python玩转人工智能最火框架 TensorFlow应用实践

415 阅读1分钟

<p>课程地址: http://www.icourse8.com/Python__TensorFlow.html</p><h5>课程地址:http://www.icourse8.com/Python__TensorFlow.html</h5><div>http://www.icourse8.com/Python__TensorFlow.html</div>

目录
第1章 课程整体介绍 

第2章 人工智能基础知识 

第3章 TensorFlow简介和开发环境搭建 

第4章 TensorFlow原理与进阶(代码实践) 

第5章 案例一 会作曲的人工智能 

第6章 案例二 会Photoshop的人工智能 

第7章 案例三 会开3D赛车的人工智能 

第8章 知识点总结和课程延展

class Solution:
    def lengthOfLongestSubstring(self, s):
        """
        :type s: str
        :rtype: int
        """
        st = {}
        i, ans = 0, 0
        for j in range(len(s)):
            if s[j] in st:
                i = max(st[s[j]], i)
            ans = max(ans, j - i + 1)
            st[s[j]] = j + 1
        return ans;