- Популярные видео
- Авто
- Видео-блоги
- ДТП, аварии
- Для маленьких
- Еда, напитки
- Животные
- Закон и право
- Знаменитости
- Игры
- Искусство
- Комедии
- Красота, мода
- Кулинария, рецепты
- Люди
- Мото
- Музыка
- Мультфильмы
- Наука, технологии
- Новости
- Образование
- Политика
- Праздники
- Приколы
- Природа
- Происшествия
- Путешествия
- Развлечения
- Ржач
- Семья
- Сериалы
- Спорт
- Стиль жизни
- ТВ передачи
- Танцы
- Технологии
- Товары
- Ужасы
- Фильмы
- Шоу-бизнес
- Юмор
Find the K-th Character in String Game I | Two Approaches | Leetcode 3304 | codestorywithMIK
Whatsapp Community Link : https://www.whatsapp.com/channel/0029Va6kVSjICVfiVdsHgi1A
Hi Everyone, this is the 98th video of our Playlist "Leetcode Easy".
Now we will be solving an easy but a good observation Problem on array - Find the K-th Character in String Game I | Two Approaches | Leetcode 3304 | codestorywithMIK
I will explain it in full detail so that it becomes easy to understand. We will find the reason behind everything so that we understand why we did what we did.
And we will do a complete dry run.
Problem Name : Find the K-th Character in String Game I | Two Approaches | Leetcode 3304 | codestorywithMIK
Company Tags : will update later
Code Github(C++ & JAVA) : https://github.com/MAZHARMIK/Interview_DS_Algo/blob/master/strings/Easy%20Tagged/Find%20the%20K-th%20Character%20in%20String%20Game%20I.cpp
Leetcode Link : https://leetcode.com/problems/find-the-k-th-character-in-string-game-i/description/
My DP Concepts Playlist : https://youtu.be/7eLMOE1jnls
My Graph Concepts Playlist : https://youtu.be/5JGiZnr6B5w
My Segment Tree Concepts Playlist : https://www.youtube.com/watch?v=k99r1A7krcY&list=PLpIkg8OmuX-K1qUIQToCllUO0UIKXt8dB
My Recursion Concepts Playlist : https://www.youtube.com/watch?v=pfb1Zduesi8&list=PLpIkg8OmuX-IBcXsfITH5ql0Lqci1MYPM
Trie Playlist - https://www.youtube.com/watch?v=DMP2bqW6URA&list=PLpIkg8OmuX-I99uuP2BZOz4mI_lms4gVG
Difference Array Technique: Concepts & Qns : https://www.youtube.com/watch?v=ZHNVmtm08WY&list=PLpIkg8OmuX-Kqkb8DqDe_4-Tiav6ilS_L
Monotonic Data Structure Concepts & Qns : https://www.youtube.com/playlist?list=PLpIkg8OmuX-IpUPXh3z8oeKSfRkKhjaTV
My GitHub Repo for interview preparation : https://github.com/MAZHARMIK/Interview_DS_Algo
Instagram : https://www.instagram.com/codestorywithmik/
Facebook : https://www.facebook.com/people/codestorywithmik/100090524295846/
Twitter : https://twitter.com/CSwithMIK
Subscribe to my channel : https://www.youtube.com/@codestorywithMIK
╔═╦╗╔╦╗╔═╦═╦╦╦╦╗╔═╗
║╚╣║║║╚╣╚╣╔╣╔╣║╚╣═╣
╠╗║╚╝║║╠╗║╚╣║║║║║═╣
╚═╩══╩═╩═╩═╩╝╚╩═╩═╝
Video Summary :
1. String Building Approach
This method constructs the sequence starting with 'a' and repeatedly appends the next alphabet characters for each existing character until reaching a length of k. It has a linear time and space complexity, as it explicitly builds the string up to the required index.
2. Bit Count (Popcount) Approach
This method leverages the property that the k-th character in the sequence can be deduced by simply counting the number of 1s in the binary representation of k-1 and adding that count to 'a'. This results in a constant time and space solution without constructing the sequence.
✨ Timelines✨
00:00 - Introduction
0:17 - Motivation
0:32 - Problem Explanation
2:46 - Approach 1 (Simulation)
7:39 - Approach 2 (Better Approach log(k))
17:03 - Coding it up
#MIK #mik #Mik
#coding #helpajobseeker #easyrecipes #leetcode #leetcodequestionandanswers #leetcodesolution #leetcodedailychallenge #leetcodequestions #leetcodechallenge #hindi #india #coding #helpajobseeker #easyrecipes #leetcode #leetcodequestionandanswers #leetcodesolution #leetcodedailychallenge #leetcodequestions #leetcodechallenge #hindi #india #hindiexplanation #hindiexplained #easyexplaination #interview#interviewtips #interviewpreparation #interview_ds_algo #hinglish #github #design #data #google #video #instagram #facebook #leetcode #computerscience #leetcodesolutions #leetcodequestionandanswers #code #learning #dsalgo #dsa #coding #programming #100daysofcode #developers #techjobs #datastructures #algorithms #webdevelopment #softwareengineering #computerscience #pythoncoding #codinglife #coderlife #javascript #datascience #leetcode #leetcodesolutions #leetcodedailychallenge #codinginterview #interviewprep #technicalinterview #interviewtips #interviewquestions #codingchallenges #interviewready #dsa #hindi #india #hindicoding #hindiprogramming #hindiexplanation #hindidevelopers #hinditech #hindilearning #helpajobseeker #jobseekers #jobsearchtips #careergoals #careerdevelopment #jobhunt #jobinterview #github #designthinking #learningtogether #growthmindset #digitalcontent #techcontent #socialmediagrowth #contentcreation #instagramreels #videomarketing #codestorywithmik #codestorywithmick #codestorywithmikc #codestorywitmik #codestorywthmik #codstorywithmik #codestorywihmik #codestorywithmiik #codeistorywithmik #codestorywithmk #codestorywitmick #codestorymik #codestorwithmik
Видео Find the K-th Character in String Game I | Two Approaches | Leetcode 3304 | codestorywithMIK канала codestorywithMIK
Hi Everyone, this is the 98th video of our Playlist "Leetcode Easy".
Now we will be solving an easy but a good observation Problem on array - Find the K-th Character in String Game I | Two Approaches | Leetcode 3304 | codestorywithMIK
I will explain it in full detail so that it becomes easy to understand. We will find the reason behind everything so that we understand why we did what we did.
And we will do a complete dry run.
Problem Name : Find the K-th Character in String Game I | Two Approaches | Leetcode 3304 | codestorywithMIK
Company Tags : will update later
Code Github(C++ & JAVA) : https://github.com/MAZHARMIK/Interview_DS_Algo/blob/master/strings/Easy%20Tagged/Find%20the%20K-th%20Character%20in%20String%20Game%20I.cpp
Leetcode Link : https://leetcode.com/problems/find-the-k-th-character-in-string-game-i/description/
My DP Concepts Playlist : https://youtu.be/7eLMOE1jnls
My Graph Concepts Playlist : https://youtu.be/5JGiZnr6B5w
My Segment Tree Concepts Playlist : https://www.youtube.com/watch?v=k99r1A7krcY&list=PLpIkg8OmuX-K1qUIQToCllUO0UIKXt8dB
My Recursion Concepts Playlist : https://www.youtube.com/watch?v=pfb1Zduesi8&list=PLpIkg8OmuX-IBcXsfITH5ql0Lqci1MYPM
Trie Playlist - https://www.youtube.com/watch?v=DMP2bqW6URA&list=PLpIkg8OmuX-I99uuP2BZOz4mI_lms4gVG
Difference Array Technique: Concepts & Qns : https://www.youtube.com/watch?v=ZHNVmtm08WY&list=PLpIkg8OmuX-Kqkb8DqDe_4-Tiav6ilS_L
Monotonic Data Structure Concepts & Qns : https://www.youtube.com/playlist?list=PLpIkg8OmuX-IpUPXh3z8oeKSfRkKhjaTV
My GitHub Repo for interview preparation : https://github.com/MAZHARMIK/Interview_DS_Algo
Instagram : https://www.instagram.com/codestorywithmik/
Facebook : https://www.facebook.com/people/codestorywithmik/100090524295846/
Twitter : https://twitter.com/CSwithMIK
Subscribe to my channel : https://www.youtube.com/@codestorywithMIK
╔═╦╗╔╦╗╔═╦═╦╦╦╦╗╔═╗
║╚╣║║║╚╣╚╣╔╣╔╣║╚╣═╣
╠╗║╚╝║║╠╗║╚╣║║║║║═╣
╚═╩══╩═╩═╩═╩╝╚╩═╩═╝
Video Summary :
1. String Building Approach
This method constructs the sequence starting with 'a' and repeatedly appends the next alphabet characters for each existing character until reaching a length of k. It has a linear time and space complexity, as it explicitly builds the string up to the required index.
2. Bit Count (Popcount) Approach
This method leverages the property that the k-th character in the sequence can be deduced by simply counting the number of 1s in the binary representation of k-1 and adding that count to 'a'. This results in a constant time and space solution without constructing the sequence.
✨ Timelines✨
00:00 - Introduction
0:17 - Motivation
0:32 - Problem Explanation
2:46 - Approach 1 (Simulation)
7:39 - Approach 2 (Better Approach log(k))
17:03 - Coding it up
#MIK #mik #Mik
#coding #helpajobseeker #easyrecipes #leetcode #leetcodequestionandanswers #leetcodesolution #leetcodedailychallenge #leetcodequestions #leetcodechallenge #hindi #india #coding #helpajobseeker #easyrecipes #leetcode #leetcodequestionandanswers #leetcodesolution #leetcodedailychallenge #leetcodequestions #leetcodechallenge #hindi #india #hindiexplanation #hindiexplained #easyexplaination #interview#interviewtips #interviewpreparation #interview_ds_algo #hinglish #github #design #data #google #video #instagram #facebook #leetcode #computerscience #leetcodesolutions #leetcodequestionandanswers #code #learning #dsalgo #dsa #coding #programming #100daysofcode #developers #techjobs #datastructures #algorithms #webdevelopment #softwareengineering #computerscience #pythoncoding #codinglife #coderlife #javascript #datascience #leetcode #leetcodesolutions #leetcodedailychallenge #codinginterview #interviewprep #technicalinterview #interviewtips #interviewquestions #codingchallenges #interviewready #dsa #hindi #india #hindicoding #hindiprogramming #hindiexplanation #hindidevelopers #hinditech #hindilearning #helpajobseeker #jobseekers #jobsearchtips #careergoals #careerdevelopment #jobhunt #jobinterview #github #designthinking #learningtogether #growthmindset #digitalcontent #techcontent #socialmediagrowth #contentcreation #instagramreels #videomarketing #codestorywithmik #codestorywithmick #codestorywithmikc #codestorywitmik #codestorywthmik #codstorywithmik #codestorywihmik #codestorywithmiik #codeistorywithmik #codestorywithmk #codestorywitmick #codestorymik #codestorwithmik
Видео Find the K-th Character in String Game I | Two Approaches | Leetcode 3304 | codestorywithMIK канала codestorywithMIK
leetcode leetcodesolution leetcodeeasy leetcodequestions leetcodeexplained leetcodechallenge coding programming dsa dsalgo datastructures algorithms interviewpreparation interviewtips jobinterview technicalinterview codinginterview developer softwareengineering codinglife codingcommunity learning study problemsolving codestorywithmik arrays string bitmanipulation java cplusplus codingwithmik india hindi hindicoding hindiprogramming hinglish educational career jobseekers jobsearch ytshorts shorts
Комментарии отсутствуют
Информация о видео
3 июля 2025 г. 18:33:19
00:17:39
Другие видео канала





















