翻译有两个给定的排好序的数组 nums1 和 nums2,其大小分别为 m 和 n。找出这两个已排序数组的中位数。总运行时间的复杂度应该是 O(log(m+n))。 原文There are two sorted arrays nums1 and nums2 of size m and n respectively.Find the median of the two sorted arrays.The overall run time complexity should be O(log (m+n)).
翻译给定一个字符串,找出其没有重复字符的最大子序列的长度。 例如,“abcabcbb”的无重复字符的最大子序列是“abc”,它的长度是 3。 “bbbbb”的最大子序列是“b”,它的长度是 1。原文Given a string, find the length of the longest substring without repeating characters.