corona tracker

someone May 05, 2021
GEOPLUGIN API IS USED IN THIS PROJECT   call back vs promises Synchronous Code function loadData(url){      return data; } function showDat...Read More

Tailwind CSS

someone April 25, 2021
It is utility-first CSS framework for rapidly building custom designs. Best for custom designs You cannot use full power of Tailwind if yuo ...Read More

Search Element in Linked List

someone February 06, 2021
In this article you will see how we can search element in linked list. We will see both iterative and recursive way of doing this.   Inserti...Read More

Count nodes in Linked List

someone February 06, 2021
We will insert all element of linked list in beginning & then simply traverse the linked list and keep counter to count the length. At l...Read More

Primitive Operations

someone February 06, 2021
This article has Primitive operation of linked list. Below script has code for insertion in beginning, insertion in end, printing linked lis...Read More

Linked List

someone February 06, 2021
Singly Linked List 1) Primitive Operations 2) Count Element 3) Search element (Set 1 & Set 2) 4) Deletion Operation 5) Count number of p...Read More

Print matrix in spiral form

someone September 27, 2020
Question : The question is pretty much clear that we have to print the matrix in spiral form. So for this we will take four pointers pointi...Read More

Insertion Sort

someone September 13, 2020
We consider we have two parts in array : 1) Sorted Part 2) Unsorted Part In this algorithm we try to move element from unsorted part to sort...Read More

Git Commands

someone September 08, 2020
Upload local project on GitHub 1) Git Bash in the directory of you project. 2) Type git init to initialize git folder 3) Type git add . to...Read More

Substring Atcoder

someone September 01, 2020
Substring , basically in this question we have to change main string (S) so that substring (T) can fall into it. We will apply naive appr...Read More

Array

someone August 31, 2020
Other Resources  Data Structures   Questions : Insertion in unsorted array  Read More

Insertion in unsorted array

someone August 31, 2020
Problem Statement : Given unsorted array & element to insert. WAP to insert that element to its correct position.   Approach   1) Sor...Read More

Algorithms

someone August 28, 2020
This page contains detailed tutorials on different Algorithms.   Topics : Selection Sort Insertion Sort  Read More

Selection Sort

someone August 28, 2020
Basically in this technique we take minimum element from entire array & swap it with the 1st element. After this we take minimum from en...Read More

Perfect Squares

someone August 24, 2020
Perfect Squares , we will pre calculate all perfect square & store in map. #include<bits/stdc++.h> using namespace std; #de...Read More

Chef Jump

someone August 24, 2020
Question link : Here   Prerequisites : Find angle between minute & hour hand    Basically in this question we have to print minimum an...Read More
Powered by Blogger.