316. Remove Duplicate Letters | Day 015 | Stack

  Рет қаралды 2,504

Aryan Mittal

Aryan Mittal

Күн бұрын

Пікірлер: 12
@udittiwari8240
@udittiwari8240 2 ай бұрын
Such a nice explanation
@allpeace1
@allpeace1 29 күн бұрын
nice explanation understood
@shalinijha7359
@shalinijha7359 11 ай бұрын
where do we get that list of question from which you are using?
@jhanavikumari274
@jhanavikumari274 6 ай бұрын
best explanation for this question thank youuu
@rohitreddy1340
@rohitreddy1340 3 ай бұрын
Nice
@Rohitsingh-ep2lo
@Rohitsingh-ep2lo 11 ай бұрын
Done
@niteshkhanna690
@niteshkhanna690 11 ай бұрын
Please post these type of question daily which are very important it would be great
@kishokkumars7602
@kishokkumars7602 11 ай бұрын
First like and First comment
@ARYANMITTAL
@ARYANMITTAL 11 ай бұрын
Kishok kumar ji dhanyawad 🤌🏻🫡
@kishokkumars7602
@kishokkumars7602 11 ай бұрын
@@ARYANMITTAL 😁😁
@snehaloganathan939
@snehaloganathan939 6 ай бұрын
Hi aryan please share those question excel sheet
@dayashankarlakhotia4943
@dayashankarlakhotia4943 11 ай бұрын
public String removeDuplicateLetters(String s){ StringBuilder sb=new StringBuilder(); int[]cnt=new int[128]; boolean[]vis=new boolean[128]; for(char c:s.toCharArray()) ++cnt[c]; for(char c:s.toCharArray()){ --cnt[c]; if(vis[c]) continue; while(sb.length()>0&&last(sb)>c&&cnt[last(sb)]>0){ vis[last(sb)]=false; sb.setLength(sb.length()-1); } vis[c]=true; sb.append(c); } return sb.toString(); } private char(StringBuilder sb){ return sb.charAt(sb.length()-1); } } 🎉❤ beats 100%tc
REMOVE DUPLICATE LETTERS | LEETCODE 316 | PYTHON STACK SOLUTION
18:15
Cracking FAANG
Рет қаралды 2,5 М.
Remove Duplicate Letters | Leetcode #316
14:55
Techdose
Рет қаралды 27 М.
Sigma Kid Mistake #funny #sigma
00:17
CRAZY GREAPA
Рет қаралды 29 МЛН
99.9% IMPOSSIBLE
00:24
STORROR
Рет қаралды 31 МЛН
Мен атып көрмегенмін ! | Qalam | 5 серия
25:41
739. Daily Temperatures | Monotonic Stack | Space Optimisation O(1)
28:11
The Hard Truth About Harvard and MIT
14:46
Samuel Bosch
Рет қаралды 13 М.
Remove Duplicate Letters | Leetcode 316 | Stack | Day-18
21:00
Ayushi Sharma
Рет қаралды 12 М.
Fastest Way to Learn ANY Programming Language: 80-20 rule
8:24
Sahil & Sarra
Рет қаралды 929 М.
How I Failed the Google Coding Interview (and lessons I learned)
14:24