© 2023 Hashnode
#learning-in-public
Introduction In this blog post, we will explore the process of building a subscription-based video course website using Node.js, Express, and Firebase. This project aims to provide users with a seamless registration and login experience, se…
So, this is my first blog and first (other than Hello, world!) venture into the Rust world. I figured I would share my progress as a way to write down my thoughts and feelings and to give some history…
Recently I learnt about a data structure called Stack. Summarising my learnings here. What is Stack? Stack is a linear data structure that follows the LIFO(last in first out) or FILO(first in last ou…
Yaml Files Yaml was initially known as "Yet Another Markup Language" which later changed to "Yaml Ain't Markup Language" The name was changed because Markup languages are used for documents but here i…
DSA is incomplete without algorithms. Let's look at a general overview of what algorithms are and why we need them. What are Algorithms? An algorithm is a finite set of instructions, executed in a sp…
I plan to become a full-stack JS developer and I thought NextJS is a great tool for a full-stack JS developer. Additionally, I wanted to start public learning and make my blogging habit frequent. So..…
I have recently started to learn data structures and algorithms. For this blog, I will sum up some basic things about Data structures. As you step into the world of tech, you might have heard many pe…
Input : Enter the length of the array3 Enter the elements of the array one2 1 3 Enter the elements of the array two7 8 9 Enter the sum10 Output: Yes Code : #include<bits/stdc++.h> using namespace std; int main(){ //The approach is to so…
Input : geeksforgeeks Output: Count of e : 4 Count of g : 2 Count of k : 2 Count of s : 2 Code : #include<bits/stdc++.h> using namespace std; int main(){ string s; cout<<"Enter the string"; cin>>s; map<char ,int> mp; for…
Input : GEEKSFORGEEKS Output: 4333355777733366677743333557777 Code : #include <bits/stdc++.h> using namespace std; int main() { string s; cout<<"Enter the string"; cin >> s; string ans = ""; for (int i = 0; i < s.length(…