diff --git a/Day-19/q3-Letter Combinations of a Phone Number/solution.cpp b/Day-19/q3-Letter Combinations of a Phone Number/Shubhra-Narang--c.md similarity index 99% rename from Day-19/q3-Letter Combinations of a Phone Number/solution.cpp rename to Day-19/q3-Letter Combinations of a Phone Number/Shubhra-Narang--c.md index 3174142a..6378f36c 100644 --- a/Day-19/q3-Letter Combinations of a Phone Number/solution.cpp +++ b/Day-19/q3-Letter Combinations of a Phone Number/Shubhra-Narang--c.md @@ -1,3 +1,4 @@ +``` class Solution { public: void generate(string &digits, int i,string &t, vector&ans, vector>&m){ @@ -29,3 +30,4 @@ class Solution { return ans; } }; +```