(String[] args)
| 27 | } |
| 28 | |
| 29 | public static void main(String[] args) { |
| 30 | Solution solution = new Solution(); |
| 31 | System.out.println(solution.lengthOfLongestSubstring("abcabcbb")); |
| 32 | System.out.println(solution.lengthOfLongestSubstring("bbbbb")); |
| 33 | System.out.println(solution.lengthOfLongestSubstring("pwwkew")); |
| 34 | System.out.println(solution.lengthOfLongestSubstring("Abcabcbb")); |
| 35 | } |
| 36 | } |
nothing calls this directly
no test coverage detected