JealousGxblog.jealous.dev·Nov 15, 2024Staying Ahead: The Importance of Market Trends for Full-Stack Web DevelopersThe software engineering landscape, especially in web development, evolves at a pace like no other. As a full-stack web developer, staying current with the latest technologies isn't just a nice-to-have—it's a necessity. The rapid changes in framework...DiscussWeb Development
Deepak Kumarburnout.hashnode.dev·Oct 28, 2024How to Master the Sliding Window Pattern: A Detailed GuideThe Sliding Window pattern is like looking through a small window that moves across a long line of objects (like an array or string). This pattern helps us solve problems quickly by focusing on a small part of the data at a time. What is the Sliding ...DiscussSliding window pattern
Sahil MahapatraforfreeCodeCampfreecodecamp.org·Oct 14, 2024Binary Exponentiation Algorithm – Explained with Practical ExamplesBinary exponentiation, also known as exponentiation by squaring, is a powerful algorithm used to efficiently calculate large powers of numbers. This technique is particularly useful in various fields of computer science, including cryptography, compe...Discussalgorithms
Jashjash.hashnode.dev·Oct 11, 2024About MeI am a Computer Science and Engineering student who is a tech enthusiast and loves to share his knowledge, experiences, and opinions about the latest tech trends and technologies. Currently, I am grinding Competitive Programming and will soon start l...Discussaboutme
Divyanshu DuttaforCOPS IIT BHUblogs.copsiitbhu.co.in·Oct 5, 2024Linear Diophantine EquationsDiophantine Equation: In mathematics, a Diophantine equation is an equation, typically a polynomial equation in two or more unknowns with integer coefficients, for which only integer solutions are of interest. A linear Diophantine equation equates to...Discuss·41 likes·284 readsProgramming Blogs
JAY VINCHHIforCOPS IIT BHUblogs.copsiitbhu.co.in·Sep 25, 2024Josephus ProblemThe Josephus problem is a fascinating mathematical puzzle involving people standing in a circle, where every k-th person is eliminated until only one remains. Named after Flavius Josephus, this problem dates back to ancient history and has significan...Discuss·56 likes·416 readsProgramming Blogs
Priyank Sevakpriyanksevak.hashnode.dev·Sep 24, 2024Leetcode: 1768. Merge Strings AlternatelyProblem Statement 1768. Merge Strings Alternately Given two strings, word1 and word2, the task is to merge them by alternating characters. The process begins with word1 and continues until one string is exhausted. Any remaining characters from the lo...Discussleetcode
Satyam Singhblog1techspec.hashnode.dev·Sep 22, 2024Let's Get Started with CodeforcesIf you’re new to competitive programming and just heard about Codeforces, it might seem a bit overwhelming at first. Don’t worry, I’ve been there too! As an engineering student, I love solving problems, but figuring out how to get started on Codeforc...Discusscoding platforms
Fatima Jannetmahia.hashnode.dev·Aug 20, 2024Hashing - Algorithms for Competitive ProgrammingHashing provides a way to quickly access and store data, ensuring efficient lookups, inserts, and deletions. It reduces the time complexity for these operations to nearly constant time, making it crucial for applications like databases, caching, and ...DiscussPython Data Structure and Algorithm - DSAHashing
Abhav Goelabhavgoel.hashnode.dev·Aug 2, 2024Binary lifting - Kth ancestor queriesBinary Lifting(DP on trees). Many of you must have heard about binary lifting and must have been intimidated by the thought of it(even i was). Then i thought to learn about the concept and write a blog for the same making things easier for the commun...DiscussC++