1. Largest Odd Number in String | Strings - Easy | #LearnDSA | Leetcode 1903

preview_player
Показать описание
Timestamps:
Problem discussion: 00:00
Approaching the problem and Dry run: 03:25
Code explanation: 07:50
Complexity Analysis: 09:00

Time Complexity : O(n)
Space Complexity : O(1)


Please like, share and subscribe if you found the video useful. Feel free to ask in comments section if you have any doubts. :)

#DataStructuresAndAlgorithms
#Leetcode
#interviewpreparation
#AyushiSharma
Largest Odd Number in String solution
Largest Odd Number in String Leetcode
Largest Odd Number in String C++
Largest Odd Number in String Java
Largest Odd Number in String Python

🔥🔥🔥🔥👇👇👇

Checkout the series: 🔥🔥🔥
LIKE | SHARE | SUBSCRIBE 🔥🔥😊
Рекомендации по теме
Комментарии
Автор

You're Explanation is too good keep going ❤️‍🔥🔥👍

Автор

Please Cover all easy and medium level questions which are most asked in interview of every topic ❤❤❤

CodingOnly-eo
Автор

Came her specially for string playlist ❤ found it so helpful

metatech
Автор

thanks please continue this for easy questions

topfacts
Автор

Actually you don't need to subtract '0' from num[i] because already in ASCII table odd numbers are allocated to odd digits (for e.g 1 -> 49, 3->51 etc.). Directly num[i]%2 != 0 will also give answer

vishalisharwal
Автор

class Solution {
public String largestOddNumber(String num) {
int n = num.length();
for(int i=n-1;i>=0;i--)
{
if(num.charAt(i)%2 !=0)
{
return num.substring(0, i+1);
}
}
// if no odd integer exists.
return "";
}
}

samiranroyy
Автор

Lemme try this playlist!! New subscriber btw..

lofi_feels
Автор

How many questions have solved in leetcode?

oggystocky
Автор

If we start from the starting it will have same time complexity as start from the end. Why we should not choose 1st approach?

knowledgelocater
Автор

problem string ka hai or num[i], size();, ye sab kya h didi,

SawanRwt-ti
Автор

Approach was very good @ayushi, but in interview point of view, are we allowed to use inbuilt functions?.

nithinkottary
Автор

What do you use to write on whiteboard?

anupamkasturia
Автор

umm change your mic, or may be my speaker problem

DevkantSah
join shbcf.ru