Srimanth MantripragadaforDSA In Pythonmantri-1724774733617.hashnode.dev·Sep 2, 2024Article 2 of learning DSA in Python.Big - O Notation To people who are wondering, why should we learn about big O notation before learning DSA, the reason is, DSA deals with problems which can be time consuming and space consuming. A terribly executed code may waste these resources whi...Discuss·1 like·38 reads#big o notation
Enigmacodedohaeris.hashnode.dev·Aug 15, 2024Beginner's Guide to Bit-Manipulation: Day 1 TutorialHello there!, we'll be covering Bit-Manipulation concepts (A-Z) and some essential tactics required to tackle DSA problems based on Bit-Manipulation. Today's Goals: Convert decimal to binary Convert binary to decimal 1. Convert Decimal to Binary ...Discuss·1 likeDSA
Sandhya Kondmarekloudsan.hashnode.dev·Aug 2, 2024AI, ML, DL, and Data Science: An In-Depth GuideIn today's data-driven world, terms like Artificial Intelligence (AI), Machine Learning (ML), Deep Learning (DL), and Data Science are often used interchangeably. However, they represent different concepts and techniques used in data analysis. This b...DiscussData Science
Rajan Sharmarajanblog.hashnode.dev·Jul 29, 2024Consistency in Data Structure and AlgorithmConsistency in Data Structures and Algorithms (DSA) is crucial for mastering the subject and performing well in coding interviews. Here are some key points to maintain consistency: 1. Regular Practice Daily Coding: Dedicate a specific amount of time...Discuss·1 likeconsitency
Arturcode-with-arthur.hashnode.dev·Jul 27, 2024Mastering Binary Search: An Easy Guide for BeginnersIntroduction Hey there, fellow coders! Today, we're diving into the world of searching algorithms with one of the most efficient and powerful methods: Binary Search. Searching for an item in a sorted list can be done quickly and efficiently with this...DiscussSearchingAlgorithm
Haneunhanlee.hashnode.dev·Jul 22, 2024LeetCode 1518. Water Bottles Java SolutionProblem Description Problem: LeetCode 1518. Water Bottles Description: We have numBottles water bottles. We can exchange numExchange empty bottles for one new full water bottle. The goal is to calculate the maximum number of water bottles we can dr...Discuss LeetCode 1518. Water Bottles
Ahmad W Khanblog.ahmadwkhan.com·Jul 19, 2024Understanding End-to-End EncryptionIn an era where digital communication has become integral to our daily lives, the need for secure and private messaging has never been more critical. End-to-end encryption (E2EE) stands as a formidable guardian of privacy, ensuring that only the inte...Discuss·1 likeE2E
Haneunhanlee.hashnode.dev·Jul 18, 2024LeetCode 2582. Pass the Pillow Java SolutionProblem Description Problem: https://leetcode.com/problems/pass-the-pillow/description/ Description: People are standing in a circle numbered from 1 to n. Person 1 holds a pillow and every hour they pass the pillow to the person to their right. If ...Discuss2582. Pass the Pillow
Haneunhanlee.hashnode.dev·Jul 17, 2024LeetCode 2058. Find the Minimum and Maximum Number of Nodes Between Critical Points Java SolutionProblem Description Problem: LeetCode 2058. Nodes Between Critical Points Description: Given a singly linked list, we need to find the minimum and maximum distance between nodes that are local maxima (a value greater than its neighbors) or local mi...Discuss2058. Find the Minimum and Maximum Number of Nodes Between Critical Points
Your Tech Sisyourtechsiss.hashnode.dev·Jul 17, 2024Dynamic Programming: Teach me like I am 5!Imagine you have a magical notebook 📓✨. This notebook remembers answers to problems you’ve already solved so you don’t have to solve them again. Let’s start with something simple: climbing stairs. Each time, you can either take 1 step or 2 steps. Ho...Discussteach me like i am 5