Skip to content

Commit

Permalink
✨ Longest Substring Without Repeating Characters
Browse files Browse the repository at this point in the history
Problem definition
  • Loading branch information
jobearrr committed Jul 10, 2024
1 parent 2bb5b34 commit 9ff7321
Showing 1 changed file with 13 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
//
// LongestSubstringWithoutRepeatingCharactersDefinition.swift
// LeetSwift
//
// Created by Jobert on 10/07/2024.
//

import Foundation
import Core

public protocol LongestSubstringWithoutRepeatingCharactersDefinition {
func lengthOfLongestSubstring(_ s: String) -> Int
}

0 comments on commit 9ff7321

Please sign in to comment.