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