Browsing Tag
datastructures
17 posts
📅 Day 1/75 of LeetCode Practice – [Today’s Focus: Arrays / Strings / Sliding Window]
Hey devs! 👋 I'm starting a daily challenge where I solve 2 LeetCode problems every day and share…
Four data structures in Python
Four data structures in Python List: Mutable: You can change, add, or remove items after the list creation.…
Managing Streaming Data with Min and Max Heaps in JavaScript: A Digital Athlete Health Tech Perspective
Data management is crucial in health tech. Whether tracking performance metrics or monitoring recovery times for athletes, organizing…
Stacks, Data Structures
Stacks A stack is a fundamental data structure in computer science that operates on a Last In, First…
Primitive Data Structure
What is Primitive Data Structure 🌲 Primitive data structures are basic and fundamental data structures provided by programming…
Data sorting
Sorting data involves putting it in a certain order. It is a basic data manipulation technique that is…
Leetcode Solution: #206: Reverse Linked List 🐬
Question Type: Medium 🎚️ Complexities: Time: O(n), Space: O(n) 🚩 Code: 👇 class Solution { public: ListNode* reverseList(ListNode*…
Leetcode Solution: #1669 Merge In Between Linked Lists 🚀
Question Type: Medium 🎚️ Complexities: Time: O(n), Space: O(1) 🚩 Code: 👇 class Solution { public: ListNode* mergeInBetween(ListNode*…
Is Data Struct about memory?
A principle that I try to follow is to think about obvious concepts. Since we are introduced to…
Product of Array Except Self – LeetCode Java Solution
Hello readers, let’s solve a LeetCode problem today. In this blog, let’s solve the problem Product of Array…