Leetcode
FightingCV
厦门大学 人工智能系 研究生,喜欢分享一些近期学到的知识,希望能和大家一起进步!
展开
-
4. Median of Two Sorted Arrays
题目Given two sorted arrays nums1 and nums2 of size m and n respectively.Return the median of the two sorted arrays.Follow up: The overall run time complexity should be O(log (m+n)).来源:力扣(LeetCode)链接:https://leetcode-cn.com/problems/median-of-two-sorted原创 2020-09-01 22:02:45 · 128 阅读 · 0 评论 -
3. Longest Substring Without Repeating Characters
文章目录题目代码PythonC++思路题目给定一个字符串,请你找出其中不含有重复字符的 最长子串 的长度。示例 1:输入: “abcabcbb”输出: 3解释: 因为无重复字符的最长子串是 “abc”,所以其长度为 3。示例 2:输入: “bbbbb”输出: 1解释: 因为无重复字符的最长子串是 “b”,所以其长度为 1。示例 3:输入: “pwwkew”输出: 3解释: 因为无重复字符的最长子串是 “wke”,所以其长度为 3。&nbs原创 2020-08-31 20:41:51 · 97 阅读 · 0 评论