J_Dheerajdevwithavatar.hashnode.net·Aug 31, 2022Static Variables and Methods in JavaIf you are learning Java, you must have heard of static variables and methods. But what are static variables and methods, when you google it, you will find that same one line that Static variables and methods belong to class instead of class object ...Discuss·14 likes·66 readsObject Oriented ProgrammingJava
Arsalan Yaqoob Malikarsalanmalik.hashnode.net·Apr 4, 2023Fast & Slow pointer method.An Algorithm every person who's learning Data Structures and Algorithms should know. Introduction to Linked Lists: Linked lists are one of the fundamental data structures used in computer science. A linked list consists of a sequence of nodes, each c...Discuss·12 likes·39 readsdatastructures
Preksha Thakkarprekshathakkar.hashnode.net·Jan 30, 2023A Beginner's Guide to DSA!Understanding DSA: Data Structures and Algorithms (DSA) is an important aspect of computer science. It is the study of data storage, organization, and manipulation in computers. Importance of DSA: A solid foundation in DSA is significant for software...Discuss·11 likes·83 readsBlogsWithCC
Piyush Satipiyushsati0409.hashnode.net·Apr 23, 2023What is BackEnd Development and How to be oneWhat is Backend Development Backend Development is the term for behind-the-scenes activities that happens when you do anything on a website or web application. It is mostly referred to the server-side of an application and everything that communicate...DiscussWeMakeDevs
Rahul Kumar Shrinivas Reddyrahulblog.hashnode.net·Apr 19, 2023Time is Money: How Time Complexity Impacts the Performance of Your CodeAs a programmer, you're likely familiar with the concept of algorithms, which are sets of instructions for solving a particular problem. But have you ever stopped to consider how efficient your algorithms are? That's where Time complexity comes in. T...Discuss·2 likes·27 readsDSA
Anshika Pandeydivaaaanshika.hashnode.net·Apr 12, 2023DSA Self PlacedIntroduction Analysis of algorithm Order of Growth Asymptotic Notations Big O Notation Omega Notation Theta Notation Analysis of common loops Analysis of Recursion Space Complexity Practice Problems Mathematics Mathematics Practice Problems Bit...Discuss#DSAwithKunal
Arsalan Yaqoob Malikarsalanmalik.hashnode.net·Apr 4, 2023Fast & Slow pointer method.An Algorithm every person who's learning Data Structures and Algorithms should know. Introduction to Linked Lists: Linked lists are one of the fundamental data structures used in computer science. A linked list consists of a sequence of nodes, each c...Discuss·12 likes·39 readsdatastructures
oluwadamilola alliforAlli Damilola Afeezdamilolaalli9.hashnode.net·Mar 29, 2023Data Structures and Algorithms (DSA)Data Structures and Algorithms (DSA) are collections of tools used in computer science to solve problems. They can be applied to a wide range of industries, including tech, manufacturing, and healthcare. In this article, we'll explore how DSA can ben...Discuss#DSAwithKunal
oluwadamilola alliforoluwadamilola alli's team blogoluwadamilolaalli.hashnode.net·Mar 29, 2023My View DSA( Data Structures and Algorithms)What is DSA Data Structures and Algorithms? DSA Data Structures and Algorithms is a collection of data structures and algorithms that can be used to solve various problems in computer science. It is one of the most popular books on this topic, writte...Discuss#DSAwithKunal
Anshul Wadhwacoder439.hashnode.net·Mar 28, 2023Data Structures and AlgorithmsA data structure is a storage that is used to store and organize data. It is a way of arranging data on a computer so that it can be accessed and updated efficiently. Algorithm refers to the step by step procedure to solve a problem. By combining "da...Discuss·3 likes·72 readsWeMakeDevs
Vishwajeet Singhvishsig.hashnode.net·Mar 26, 2023DSA - How to Deal with ItMost of the time you might have this question stuck in your mind why am I even doing Data Structures & Algorithms? It feels the same as banging your head in maths problems. Sometimes migraine shows off in DSA journey. Here I'll discuss the following ...DiscussWeMakeDevs
Bhagavatula Venkata Sai AshwinforAverage Programmer Blogtheaverageprogrammer.hashnode.net·Mar 26, 2023Search Algorithms: Linear & BinarySearching algorithms are an essential part of computer science and programming. They allow us to efficiently find specific values in a collection of data. Two popular search algorithms are linear search and binary search. Linear Search: Linear search...Discussdatastructures-&-algorithmsSearching Algorithms
Aryan Singlaaryansingla.hashnode.net·Mar 25, 2023Linked List QuestionsHello Community, So today I solved some questions on LinkedList. Hello Community, So today I solved some questions on LinkedList.1. Remove Duplicates from Sorted LinkedList public ListNode deleteDuplicates(ListNode node) { if(node == null){ ...DiscussDSA