翻译写一个函数(或方法)来寻找一个字符串数组中的最长公共前缀。原文Write a function to find the longest common prefix string amongst an array of strings.释义"abcdefg" "abcdefghijk" "abcdfghijk" "abcef" 上面的字符串数组的最长公共前缀就是"abc"。
翻译有两个给定的排好序的数组 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.