cookie

ما از کوکی‌ها برای بهبود تجربه مرور شما استفاده می‌کنیم. با کلیک کردن بر روی «پذیرش همه»، شما با استفاده از کوکی‌ها موافقت می‌کنید.

avatar

LeetCodin

1000+ Solved problems | Yechilgan masalalar |🇺🇿|🇬🇧 - Data Structures and Algorithms | Ma'lumotlar tuzilmalari va Algoritmlar - SE at Deloitte, USA LinkedIn: linkedin.com/in/bekhzod-tairov LeetCode: https://leetcode.com/tbekpro/

نمایش بیشتر
کشور مشخص نشده استزبان مشخص نشده استفناوری و برنامه‌ها14 382
پست‌های تبلیغاتی
1 387
مشترکین
اطلاعاتی وجود ندارد24 ساعت
-97 روز
-430 روز

در حال بارگیری داده...

معدل نمو المشتركين

در حال بارگیری داده...

Photo unavailableShow in Telegram
Solving 1000 LeetCode problems - EASY! If you read such a statement, don't believe it! 😉 🚀 Today I'm celebrating 1000 LeetCode problems solved: a journey of dedication and growth! 🚀 I am happy to share a significant milestone in my journey – I have successfully tackled 1000 challenging LeetCode problems! 🎉 This accomplishment has been the result of relentless dedication, countless early mornings, and a commitment to continuous growth. 🌅 400 Days of Consistency: Over the past 400 days, I made it a ritual to rise early and dedicate 1-2 hours daily to solving complex coding problems on LeetCode. This consistent effort has taught me the power of discipline and the incredible outcomes that can be achieved through small, focused actions over an extended period. 💡 Lessons in Problem Solving: Each LeetCode problem I encountered was a unique puzzle, pushing me to think creatively, strategize meticulously, and embrace diverse problem-solving approaches. These challenges not only honed my technical skills but also enhanced my critical thinking and perseverance. 🌟 What's Next: As I celebrate this achievement, I am excited to leverage the skills and insights gained to take on even greater challenges. My journey in the world of coding is far from over, and I'm eager to continue exploring, learning, and contributing to the ever-evolving tech landscape. #leetcode #codingJourney #milestoneachieved #neverstoplearning #techgrowth #dsa #java #programming
نمایش همه...
👍 43🔥 8 7🤯 6🏆 5 3
01:23
Video unavailableShow in Telegram
Asr SIRI ochildi! PHPni orqasida kim turganligini bilarmidingiz? Ustoz Qudrat Abdurahimov, bu sirni hammaga e'lon qildi😁 Gulla, yashna PHP!
نمایش همه...
IMG_5458.MP416.22 MB
🇺🇿 669. Trim a Binary Search Tree 🧑‍💻 Hammaga salom! Regular tarzda post qilmaganimga 3 haftacha bo'libdi. Ammo LeetCode-dagi masalalarni har kuni yechayapman. Keling bugun Binar Qidiruv Daraxtiga oid masalani yechib ko'raylik. 🟡 O'rta daraja: 669. Trim a Binary Search Tree 🧑‍💻 Mening yechimim: Java 100% Faster | 0ms BFS + DFS Solution Sizning vazifangiz berilgan diapazonga kiruvchi qiymatlarga ega tugunlarni qoldirish va qolganlarini olib tashlash. Omad! ✌️🧐 @leetcodin
نمایش همه...
Trim a Binary Search Tree - LeetCode

Can you solve this real interview question? Trim a Binary Search Tree - Given the root of a binary search tree and the lowest and highest boundaries as low and high, trim the tree so that all its elements lies in [low, high]. Trimming the tree should not change the relative structure of the elements that will remain in the tree (i.e., any node's descendant should remain a descendant). It can be proven that there is a unique answer. Return the root of the trimmed binary search tree. Note that the root may change depending on the given bounds.   Example 1: [

https://assets.leetcode.com/uploads/2020/09/09/trim1.jpg]

Input: root = [1,0,2], low = 1, high = 2 Output: [1,null,2] Example 2: [

https://assets.leetcode.com/uploads/2020/09/09/trim2.jpg]

Input: root = [3,0,4,null,2,null,null,1], low = 1, high = 3 Output: [3,2,null,1]   Constraints: * The number of nodes in the tree is in the range [1, 104]. * 0 <= Node.val <= 104 * The value of each node in the tree is unique. * root is guaranteed to be a…

🇬🇧 669. Trim a Binary Search Tree 🧑‍💻 Hi, guys! I haven't been posting regularly for about 3 weeks due to some reasons, but I didn't stop solving LeetCode problems. So, let's go and start with interesting Binary Search Tree problem. 🟡 Medium: 669. Trim a Binary Search Tree 🧑‍💻 My solution: Java 100% Faster | 0ms BFS + DFS Solution Your task is to trim given tree such a way that only nodes with values between given range are kept. Good luck! ✌️🧐 @leetcodin
نمایش همه...
Trim a Binary Search Tree - LeetCode

Can you solve this real interview question? Trim a Binary Search Tree - Given the root of a binary search tree and the lowest and highest boundaries as low and high, trim the tree so that all its elements lies in [low, high]. Trimming the tree should not change the relative structure of the elements that will remain in the tree (i.e., any node's descendant should remain a descendant). It can be proven that there is a unique answer. Return the root of the trimmed binary search tree. Note that the root may change depending on the given bounds.   Example 1: [

https://assets.leetcode.com/uploads/2020/09/09/trim1.jpg]

Input: root = [1,0,2], low = 1, high = 2 Output: [1,null,2] Example 2: [

https://assets.leetcode.com/uploads/2020/09/09/trim2.jpg]

Input: root = [3,0,4,null,2,null,null,1], low = 1, high = 3 Output: [3,2,null,1]   Constraints: * The number of nodes in the tree is in the range [1, 104]. * 0 <= Node.val <= 104 * The value of each node in the tree is unique. * root is guaranteed to be a…

🇺🇿 Summary Bu postda men yozilgan mavzularga havolalarni qoldirmoqchiman. Maqsad - mavzularni tez topa olish. Siz uchun foydali bo'ladi degan umiddaman. 1. Binar daraxtni aylanib o'tishning 3 xili. 2. Rekursiya. Nazariya. 3. Breaking the [bad] habit. Triggerlar. 4. Ma'lumotlar tuzilmasi: Massiv. 5. Java-da Hashtable. To'liq tahlil. 6. Ma'lumotlar tuzilmasi: Linked list. 7. Ma'lumotlar tuzilmasi: Stack va Queue. 8. Saralash algoritmlari. Shu blogni o'qib borayotganingiz uchun rahmat! ✌️😎 @leetcodin
نمایش همه...
LeetCodin

🇺🇿 Binary Tree: Inorder Traversal (Inorder aylanib o'tish usuli) Hammaga salom! Kecha so'rovnomaga bergan javoblaringiz uchun rahmat. Ko'rinib turibdiki, barcha ma'lumotlar tuzilmalari ko'rib chiqilishi kerak va biz Binary Tree-dan boshlaymiz, chunki bu top tanlov edi. Umid qilamanki, bir kun biz ushbu ma'lumotlar tuzilmasini onlayn tarzda to'liq ko'rib chiqamiz, chunki buning uchun men avval yaxshilab tayyorlanishim kerak. Bugun esa men sizning e'tiboringizni Ikki tugunli (Binary Tree) daraxtning Inorder aylanib o'tish usuliga qaratmoqchiman. Inorder usuli bilan daraxtni kesib o'tishning asosiy g'oyasi: 1. Chap tugunga o'ting (chap bola daraxt) 2. Keyin ona tugunga [parent node] boring 3. Keyin o'ng tugunga (o'ng bola daraxt) o'ting. [Agar noto'g'ri tarjima qilgan bo'lsam, iltimos, comment qilib yozib yuboring🙈] Keling, shu yerda to'xtab, yuqoridagi ma'lumotlarni bilib turib, LeetCode-dagi masalani yechishga harakat qilamiz: 94. Ikkilik daraxtning inorder tartibida o'tish Maslahat: rekursiv usuldan foydalanib…

00:03
Video unavailableShow in Telegram
*I'm back 😁😁 🇬🇧 Yesterday a certain number of new people joined the channel. Brief intro: On this channel I try to explain Algorithms and Data Structures. Also, I solve the problems on LeetCode and analyze the solutions. 🧑‍💻 🇺🇿 Kecha bir nechta yangi odam qo'shilibdi. Shuning uchun kichkina tanishuv: Bu blogda Algoritmlar, Ma'lumot Tuzilmalari va LeetCode-da masalalarni yechib, yaxshilab tushuntirishga harakat qilaman.🧑‍💻 @leetcodin
نمایش همه...
im back.gif.mp40.76 KB
🇬🇧 Summary Let me summarize what we covered so far and share the links to the posts one more time, so that it would be easier to navigate. I hope this will be useful for you. 1. 3 types of binary tree traversal. 2. Recursion. Theory. 3. Breaking the [bad] habit. Triggers. 4. Data Structure: Array. 5. Hashtable in Java. Inside out. 6. Data Structure: Linked list. 7. Data Structures: Stack and Queue. 8. Sorting Algorithms. Thanks for reading this blog! ✌️😎 @leetcodin
نمایش همه...
LeetCodin

🇬🇧Binary Tree: Inorder Traversal 🇺🇿O'zbekchasi pastda⬇️ Hi, guys! Thanks for your answers to the poll I shared yesterday. It's obvious that all data structures need to be overviewed and we will start from Binary Tree since it was the top choice. I hope that one day we will fully review this data structure online later. Today I want to draw your attention to Inorder Traversal of Binary Tree. Basic idea of inorder traversal is: 1. Go to the left node (subtree) 2. Then go to the parent 3. Then go to the right node (subtree). Let's pause here. Try to solve the problem on LeetCode just knowing the information above: 94. Binary Tree Inorder Traversal Hint: try to use recursive method. OK. I hope you were able to solve it. Here is more information on inorder traversal: 1. Article about inorder traversing 2. My solution on LeetCode. I'll add animated image to demonstrate how a binary tree should be traversed.

Roses are red Violets are blue Always test your code Before it tests you from Hassan Rezk Habib
نمایش همه...
Photo unavailableShow in Telegram
LeetCode 700. Achieved another milestone of 700 solved problems on LeetCode. What went better during these 100 problems: - Finally reached 75% threshold which means that 75% of solved problems were of medium and hard levels. - Seeing patterns and applying them to solve problems. Hence, spending less time to find solution. Let's gooo! 🧑‍💻🎆 @leetcodin
نمایش همه...
Repost from Azimjon Pulatov
Photo unavailableShow in Telegram
FAANGda Amaliyot Tayyorgarlik -> Jarayon -> Natija Manba: youtu.be/irZXVknbeQc 0. Rezyume tayyorlash: - XYZ qonunini ishlatish (9:30) 1. Tayyorlanish uchun kitoblar: - Grokking Algorithms - Cracking the Coding Interview - Algorithm Desing Manual 2. Mashq qilish: - Leetcode.com 3. O'rganishlarni qo'llash: - Pramp.com 4. Topshirish 🤷‍♂️ Sinalgan usul.
نمایش همه...
یک طرح متفاوت انتخاب کنید

طرح فعلی شما تنها برای 5 کانال تجزیه و تحلیل را مجاز می کند. برای بیشتر، لطفا یک طرح دیگر انتخاب کنید.