Search results for #30DaysLeetcode
🚀 Day 28 of LeetCode 30-Day Challenge 🔍 Problem: Search in Rotated Sorted Array 📈 Example Inputs & Outputs: Input: search([4,5,6,7,0,1,2], 0); ➤ Output: 4 #LeetCode #30DaysLeetCode #BinarySearch #JavaScript #InterviewPrep #DailyDSA
🚀 Day 27 of LeetCode 30-Day Challenge 📈 Example Inputs & Outputs: findSubstring("barfoothefoobarman", ["foo","bar"]); -> Output: [0, 9] #LeetCode #30DaysLeetCode #JavaScript #InterviewPrep #DailyDSA
🚀 Day 26 of LeetCode 30-Day Challenge 🔍 Problem: Divide Two Integers 📈 Example Inputs & Outputs 1. divide(10, 3); // Output: 3 2. divide(7, -3); // Output: -2 3. divide(-2147483648, -1); // Output: 2147483647 (clamped overflow) #LeetCode #30DaysLeetCode @LeetCode
🚀 Day 25 of LeetCode 30-Day Challenge 📷 Input Example: strStr("sadbutsad", "sad"); // Output: 0 strStr("leetcode", "leeto"); // Output: -1 #LeetCode #30DaysLeetCode #TwoPointer
🚀 Day 23 of LeetCode 30-Day Challenge:Remove Duplicates from Sorted Array 📤 Input Example: nums = [0,0,1,1,1,2,2,3,3,4] 📥 Output: [0,1,2,3,4,...], return value: 5 #30DaysOfCode #30DaysLeetcode #LeetcodeChallenge #CodingChallenge #DailyDSA #CodeEveryday @LeetCode
Day 28th : Total Cost to Hire K Workers Level: Medium Topic: Heap (Priority Queue) #75leetcode #30daysleetcode
Day 23rd: Find the K th largest element without sorting Level : Medium Topic: Heap Priority Queue #dsa #75leetcode #30daysleetcode
Day 21st : Minimum flip required to make a or b equal to c level: medium topic: bitwise operator #dsa #75leetcode #30daysleetcode
Day 20th : Nth Tribonacci Number #dsa #75leetcode #30daysleetcode Level: Easy Topic: Dp Recrusion
Day 19th: Minimum Number of a Arrows to Burst Balloons #dsa #75leetcode #30daysleetcode Level: Medium Topic: Intervals
Day 17th: Daily Temperatures #dsa #75leetcode #30daysleetcode Level: Medium Topic: Monotonic Stack
Day 16th: Min Cost Climbing Stairs #dsa #75leetcode #30daysleetcode Level : Easy Topic: Dynamic Programming
Day 15th: Peak Element in Array Level: Medium Topic: Binary Search #dsa #75leetcode #30daysleetcode
Day 14th : Counting Bits #dsa #leetcode #30daysleetcode Level : Easy Topic: Bit Manipulation
Day 13th: Single Number Level: Medium Topic: Bitwise Manipulation #dsa #75leetcode #30daysleetcode
Day 12th: Dota2 Senate Level: Medium Topic: Queue Greedy #dsa #75leetcode #30daysleetcode
Day 11th : Successful Paris of Spells and Potions #dsa #leetcode #30daysleetcode Level : medium Topic: binary search
Day 10th: Longest Zigzag Path in an Binary Tree Level: Medium Topic: DFS Binary Tree #dsa #leetcode #30daysleetcode
Day 9th : Guess Number Higher or Lower #dsa #75leetcode #30daysleetcode Level:Easy Topic: Binary Search
Day 8th : Maximum Level Sum of a Binary Tree Level: Medium Topic: DFS Binary Tree #dsa #leetcode #30daysleetcode