给定一个字符串,找出最长的不具有重复字符的子串的长度。例如,“abcabcbb”不具有重复字符的最长子串是“abc”,长度为3。对于“bbbbb”,最长的不具有重复字符的子串是“b”,长度为1。
示例1
输入
""
输出
0
加载中...
import java.util.*; public class Solution { /** * * @param s string字符串 * @return int整型 */ public int lengthOfLongestSubstring (String s) { // write code here } }
class Solution { public: /** * * @param s string字符串 * @return int整型 */ int lengthOfLongestSubstring(string s) { // write code here } };
# # # @param s string字符串 # @return int整型 # class Solution: def lengthOfLongestSubstring(self , s ): # write code here
/** * * @param s string字符串 * @return int整型 */ function lengthOfLongestSubstring( s ) { // write code here } module.exports = { lengthOfLongestSubstring : lengthOfLongestSubstring };
# # # @param s string字符串 # @return int整型 # class Solution: def lengthOfLongestSubstring(self , s ): # write code here
package main /** * * @param s string字符串 * @return int整型 */ func lengthOfLongestSubstring( s string ) int { // write code here }
""
0