dsainpython.devArticle 3 of learning DSA in Python.Classes & Pointers In DSA, classes & pointers play a very important role in data structures. For example, a linkedlist has the following functions in it: def __init__(self,value) def append(self,value) def pop(self) def prepend(self,index,value) ...Sep 7, 2024·2 min read
dsainpython.devArticle 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...Sep 2, 2024·2 min read
dsainpython.devArticle 1 of learning DSA in Python.A quick intro about myself, I am Srimanth Mantripragada from Hyderabad, India. I am recently graduated from Neil Gogte Institute of Technology in CSE[AIML]. A wannabe data scientist/analyst who's now trying hard to actually be a data scientist/analys...Aug 27, 2024·2 min read
srimanth.hashnode.devAn Adventure In The World Of Data Structures And AlgorithmsWhat are Data Structures? Data structures are ways of organizing and storing data in a computer so that it can be accessed and used efficiently. They are used to represent different types of data, such as numbers, text, and images. Data structures ca...Mar 18, 2023·20 min read
srimanth.hashnode.devThe Fundamentals of Machine Learning : A New BeginningDefinition of Machine Learning Machine learning is a subfield of artificial intelligence that focuses on developing algorithms and statistical models that enable computers to perform tasks that would normally require human intelligence, such as reco...Feb 3, 2023·11 min read