2022-11-21 13:15:56 +00:00
|
|
|
#ifndef S0017_LETTER_COMBINATIONS_OF_A_PHONE_NUMBER_HPP
|
|
|
|
#define S0017_LETTER_COMBINATIONS_OF_A_PHONE_NUMBER_HPP
|
2022-11-04 07:50:54 +00:00
|
|
|
|
|
|
|
#include <vector>
|
|
|
|
#include <string>
|
|
|
|
#include <unordered_map>
|
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
|
2022-11-30 10:20:36 +00:00
|
|
|
class S0017 {
|
2022-11-04 07:50:54 +00:00
|
|
|
public:
|
|
|
|
vector<string> letterCombinations(string digits);
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|