#include #include #include #include #include #include #include #include #include #include #include using namespace std; class Solution { public: int ladderLength(string b, string e, vector& wordList); }; int Solution::ladderLength(string b, string e, vector& wl) { return 0; } int main() { string b, e, s; vector wl; Solution S; cin >> b >> e; while (cin >> s) wl.push_back(s); cout << S.ladderLength(b, e, wl) << endl; return 0; }