3174. Clear Digits | Simulation | Arrays | 2 Pointers

แชร์
ฝัง
  • เผยแพร่เมื่อ 5 พ.ย. 2024

ความคิดเห็น • 7

  • @lethalrmx7851
    @lethalrmx7851 5 หลายเดือนก่อน

    Bhai leetcode premium ka kuch karo old vale sab down ho gaye hai

  • @Engineering.Wallah
    @Engineering.Wallah 5 หลายเดือนก่อน +2

    I used stack in hurry 😭

    • @ARYANMITTAL
      @ARYANMITTAL  5 หลายเดือนก่อน

      Yaa that’s the awesome & intuitive approach too ❤️😊

    • @ishan_19
      @ishan_19 5 หลายเดือนก่อน

      Same bro, but coudn't complete it. Can you share that code if possible? Your time and efforts will be appreciated.

    • @Engineering.Wallah
      @Engineering.Wallah 5 หลายเดือนก่อน +1

      @@ishan_19 class Solution {
      public:
      string clearDigits(string s) {
      int n=s.size();
      string ans="";
      stackS;
      for(auto c:s){
      if(S.size() && c>='0' && c

    • @Ashutosh_75
      @Ashutosh_75 5 หลายเดือนก่อน

      Me tooo

    • @ishan_19
      @ishan_19 5 หลายเดือนก่อน

      @@Engineering.Wallah thanks mate