From 9e8731d9d8446299dd23a6725d6a72ac30f82008 Mon Sep 17 00:00:00 2001 From: Bhumika Gupta <95757762+bh-g@users.noreply.github.com> Date: Wed, 24 Jan 2024 00:50:34 +0530 Subject: [PATCH] Update and rename solution.cpp to Shubhra-Narang--c.md --- .../{solution.cpp => Shubhra-Narang--c.md} | 2 ++ 1 file changed, 2 insertions(+) rename Day-19/q3-Letter Combinations of a Phone Number/{solution.cpp => Shubhra-Narang--c.md} (99%) 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; } }; +```