{"id":26537451,"url":"https://github.com/mbeps/longest_substring","last_synced_at":"2026-07-15T04:31:25.583Z","repository":{"id":173349801,"uuid":"650638964","full_name":"mbeps/Longest_Substring","owner":"mbeps","description":"3. Longest Substring Without Repeating Characters","archived":false,"fork":false,"pushed_at":"2023-06-12T11:55:03.000Z","size":6,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2026-04-06T14:25:51.315Z","etag":null,"topics":["leetcode-python","leetcode-solutions"],"latest_commit_sha":null,"homepage":"https://leetcode.com/problems/longest-substring-without-repeating-characters/","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/mbeps.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2023-06-07T13:43:59.000Z","updated_at":"2023-07-06T13:02:53.000Z","dependencies_parsed_at":null,"dependency_job_id":"16b4b71a-17d0-48d1-acd3-8ec7adb0aebd","html_url":"https://github.com/mbeps/Longest_Substring","commit_stats":null,"previous_names":["mbeps/longest_substring"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/mbeps/Longest_Substring","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mbeps%2FLongest_Substring","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mbeps%2FLongest_Substring/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mbeps%2FLongest_Substring/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mbeps%2FLongest_Substring/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mbeps","download_url":"https://codeload.github.com/mbeps/Longest_Substring/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mbeps%2FLongest_Substring/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":35490564,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-07-15T02:00:06.706Z","response_time":131,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["leetcode-python","leetcode-solutions"],"created_at":"2025-03-21T22:30:13.750Z","updated_at":"2026-07-15T04:31:25.578Z","avatar_url":"https://github.com/mbeps.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# **3. Longest Substring Without Repeating Characters**\n\nGiven a string `s`, find the length of the longest substring without repeating characters.\n\n\n**Example 1:**\n\n```\nInput: s = \"abcabcbb\"\nOutput: 3\nExplanation: The answer is \"abc\", with the length of 3.\n```\n\n**Example 2:**\n\n```\nInput: s = \"bbbbb\"\nOutput: 1\nExplanation: The answer is \"b\", with the length of 1.\n```\n\n**Example 3:**\n\n```\nInput: s = \"pwwkew\"\nOutput: 3\nExplanation: The answer is \"wke\", with the length of 3.\nNotice that the answer must be a substring, \"pwke\" is a subsequence and not a substring.\n```\n \n\n**Constraints:**\n- `0 \u003c= s.length \u003c= 5 * 104`\n- `s` consists of English letters, digits, symbols and spaces.\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmbeps%2Flongest_substring","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmbeps%2Flongest_substring","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmbeps%2Flongest_substring/lists"}