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