1️⃣ Swapna's blog is coming soon. It will include from simple to complex topics on DSA. It will also help you getting through how to approach for solving the problem. It should be your one-stop to get familiar with DSA.
Some more to look for 👇
These are external links and, I am not promoting or, having any affiliation. These have strong developer community.
1️⃣ I will launch a YouTube channel in early 2022. So, stay tuned.
2️⃣ FreeCodeCamp channel in YouTube
3️⃣ I like this course in Coursera. Attend, it's useful
1️⃣ Complex String Formation
2️⃣ String Conversions
3️⃣ Default Value Assign
4️⃣ Default Function Parameters
5️⃣ Checking properties of a possibly Nullish Object
6️⃣ Fetching Values from an Object
7️⃣ Function Argument List
Recipe 1️⃣
✪ What to Cook?
Complex String Formation
✪ Ingredient
`` (String Template Literal)
✪ Cooking Process
You were cooking like this (tedious):
🔥 Interview Questions with Beginner Friendly Explanations and Pseudo Code 🔥
👇
0️⃣ Basics
✪ What is a Linked List?
• a LINEAR data structure
• its elements may not be in contiguous memory location
• each element has a reference to its next element
✪ What is an element in a Linked List popularly called?
A Node.
++
✪ What is the structure of a Node in Linked List?
A node has 2 parts.
• First one contains the value
• Second one contains the reference (or, pointer) to the next node. For the last node this is NULL as it doesn't point to any other node.
I am soon going to start my blog. All the questions featured here will be answered in detail over there. I will post answers for some of these in Twitter platform as well. Questions will be added with time. Stay tuned.
Now, let's go through the questions.
↓
1️⃣ Basics
✪ What is an algorithm?
✪ What is time complexity?
✪ What is space complexity?
✪ What is a Data Structure?
✪ What are types of Data Structures? (Linear/Non-linear)
✪ What are different operations that can be performed on different data structures?
These differences will make you grasp the fundamentals of both Array and Linked List really quick.
And if you are preparing for any interviews, it would definitely help you.
Let's explore 👇
1️⃣ Storage
2️⃣ Size
3️⃣ Access of Elements
4️⃣ Insertion/Deletion of Elements
5️⃣ Search for Elements
6️⃣ Memory Allocation
7️⃣ Memory Usage
8️⃣ Memory Utilisation
9️⃣ Use case