Hello there. Let’s have a look at what Recursion is supposed to be in Data Structures & Algorithm. It is an undeniable fact that we can’t talk about DSA without mentioning recursion along the way, recursion forms most part of solving many of DSA problems. now let’s take a look at Recursion. What is Recursion […]
Hello There, Hope you’re keeping well ? Today let’s talk about how to be good at Solving Data structures and Algorithm problems. If you’re like me then you will also find DSA problems as intimidating at first glance, that may even lead you to ask yourself a lot of questions as to if you’re ever […]
Am not too sure Problem Solving Approach in Data Structures and Algorithm is such a rocket science that we can’t handle. to every problem there should always be a way to solve them, that is what appears to be the Algorithms (the Steps involved in arriving at the answers) this type of non portamento way […]
Hello there ! i hope you’re keeping yourself alive. If yes then i think today is a good day to talk about two of the important things in Data Structures and Algorithms. Arrays & Objects. as a matter of fact you can’t work on a serious DSA Function without dealing with either of the two […]
Big O Notation DSA #2
Hello There, welcome back. For today’s discussion i will be talking about the very first thing we need to settle the scores on on before diving deep into how easy Data Structures should be. Let’s think about Big O Notation this way. Actually it is not just okay to write a piece of code that […]
Hi, in this series we are going to learn a bit about Data Structures and algorithms so let’s start talking about Data Structures and algorithms. In my own personal opinion Data Structures are serious pain in the ass but unfortunately we can’t really become good at programming without knowing about it and how to solve […]
GraphQL (WP) get a custom post by uri
I’m following one of the tutorials on youtube on performing basic query on headless wordpress api with GraphQL. The query that the tutorial (over a year old now) does is: query getBookBySlug($slug: String) { book: bookBy(uri: $slug) { title book_meta{ price publisher } } } Books/book is a custom pust type and I can query […]