Skip to content

Latest commit

 

History

History

first-letter-to-appear-twice

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

First letter to appear twice

Problem link

Solutions

Solution.cpp

// https://leetcode.com/problems/first-letter-to-appear-twice

class Solution {
 public:
  char repeatedCharacter(string s) {
    set<char> ss;
    for (char c : s) {
      if (ss.count(c)) return c;
      ss.insert(c);
    }
    return ' ';
  }
};

Tags