Welemele-John Chizegunboat72.hashnode.dev·11 hours agoData Visualization Guide to SeabornIn recent years Data visualization in Seaborn has gained a lot of traction mainly due to its functions and storytelling capacity. It's a powerful tool that turns data into digestible formats by leveraging visual representations into actionable insigh...DiscussData Science
Shubham Sardablog.unwiredlearning.com·17 hours agoClone Graph (Leetcode #133)The Clone Graph problem is a popular graph-related question often asked in technical interviews and coding assessments. It tests your understanding of graph traversal techniques and your ability to create independent copies of complex data structures...DiscussDSA Interview Preparation With Blind 75DSA
Shubham Sardablog.unwiredlearning.com·17 hours agoNumber of Islands (Leetcode #200)In this blog, we will explore the "Number of Islands" problem, a common coding question that helps in understanding grid traversal techniques. We'll break down the problem, explore different approaches, and provide an optimized solution. Understandin...DiscussDSA Interview Preparation With Blind 75DSA
Shubham Sardablog.unwiredlearning.com·18 hours agoFind Median from Data Stream (Leetcode #295)The problem of finding the median from a stream of numbers is a classic question, often found in coding challenges. This post will break down how you can solve this problem efficiently, starting from a simple brute force approach, all the way to a so...DiscussDSA Interview Preparation With Blind 75DSA
Shubham Sardablog.unwiredlearning.com·18 hours agoWord Search II (Leetcode #212)In this blog, we will discuss the brute force approach, provide hints for solving the problem efficiently, and dive into an optimal solution using a combination of Trie and DFS. Understanding the Problem Statement Word Search II (Leetcode 212) is a p...DiscussDSA Interview Preparation With Blind 75DSA
Shubham Sardablog.unwiredlearning.com·19 hours agoDesign Add and Search Words Data Structure (Leetcode #211)Designing a data structure that can handle adding words and searching with wildcards is an interesting challenge that tests your understanding of tries and recursive search techniques. Let’s solve the LeetCode problem "211. Design Add and Search Word...DiscussDSA Interview Preparation With Blind 75DSA
Muskantrendingflow.hashnode.dev·19 hours agoData Analytics 101: Understanding the Key Concepts and ApplicationsBusinesses, governments, and even individuals are increasingly relying on data to make informed decisions in tech world also. But how do we take raw data and extract meaningful insights from it? The answer lies in data analytics. Whether you're just ...Discussdata analytics
Shubham Sardablog.unwiredlearning.com·21 hours agoImplement Trie (Prefix Tree) (Leetcode #208)Tries, also known as Prefix Trees, are an important data structure used to efficiently store and search collections of strings. They are particularly useful when dealing with scenarios that involve prefix-based searching, such as autocomplete systems...DiscussDSA Interview Preparation With Blind 75DSA
Shubham Sardablog.unwiredlearning.com·a day agoWord Search (Leetcode #79)The "Word Search" problem is a challenging LeetCode problem where you are given a grid (board) filled with characters and a target word. The objective is to determine if the target word can be constructed by sequentially moving through adjacent cells...DiscussDSA Interview Preparation With Blind 75DSA
Shubham Sardablog.unwiredlearning.com·a day agoCombination Sum (Leetcode #39)The Combination Sum problem is an interesting challenge from LeetCode that deals with discovering all unique combinations from a given list of numbers that sum up to a specific target value. Let's dive into this problem step by step to understand how...DiscussDSA Interview Preparation With Blind 75DSA