Advertisement
Guest User

Untitled

a guest
Jun 25th, 2017
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. public int GetLengthOfLongestSubstring(string s)
  2. {
  3. if (s.Distinct().Count() == 1)
  4. {
  5. return 1;
  6. }
  7. else
  8. {
  9. return s.Length;
  10. }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement