leetcode/include/s0014_longest_common_prefix...

15 lines
226 B
C++

#ifndef S0014_LONGEST_COMMON_PREFIX_HPP
#define S0014_LONGEST_COMMON_PREFIX_HPP
#include <string>
#include <vector>
using namespace std;
class S0014 {
public:
string longestCommonPrefix(vector<string>& strs);
};
#endif