Thursday, 29 June 2017

GATE - Graph Theory 7

Hi friends, This is a post under the series of posts labeled as GATE. I had created short hand written notes during my GATE preparation to revise for various topics. The posts under label GATE include formulae, equations, properties and other important points...
Share:

GATE - Graph Theory 8

Hi friends, This is a post under the series of posts labeled as GATE. I had created short hand written notes during my GATE preparation to revise for various topics. The posts under label GATE include formulae, equations, properties and other important points...
Share:

Tuesday, 27 June 2017

GATE - Graph Theory 5

Hi friends, This is a post under the series of posts labeled as GATE. I had created short hand written notes during my GATE preparation to revise for various topics. The posts under label GATE include formulae, equations, properties and other important points...
Share:

GATE - Graph Theory 6

Hi friends, This is a post under the series of posts labeled as GATE. I had created short hand written notes during my GATE preparation to revise for various topics. The posts under label GATE include formulae, equations, properties and other important points...
Share:

Sunday, 25 June 2017

GATE - Graph Theory 3

Hi friends, This is a post under the series of posts labeled as GATE. I had created short hand written notes during my GATE preparation to revise for various topics. The posts under label GATE include formulae, equations, properties and other important points...
Share:

GATE - Graph Theory 4

Hi friends, This is a post under the series of posts labeled as GATE. I had created short hand written notes during my GATE preparation to revise for various topics. The posts under label GATE include formulae, equations, properties and other important points...
Share:

GATE - Groups 7

Hi friends, This is a post under the series of posts labeled as GATE. I had created short hand written notes during my GATE preparation to revise for various topics. The posts under label GATE include formulae, equations, properties and other important points...
Share:

Friday, 23 June 2017

GATE - Graph Theory 2

Hi friends, This is a post under the series of posts labeled as GATE. I had created short hand written notes during my GATE preparation to revise for various topics. The posts under label GATE include formulae, equations, properties and other important points...
Share:

GATE - Graph Theory 1

Hi friends, This is a post under the series of posts labeled as GATE. I had created short hand written notes during my GATE preparation to revise for various topics. The posts under label GATE include formulae, equations, properties and other important points...
Share:

Wednesday, 21 June 2017

GATE - Data Structures & Algorithms 2

Hi friends, This is a post under the series of posts labeled as GATE. I had created short hand written notes during my GATE preparation to revise for various topics. The posts under label GATE include formulae, equations, properties and other important points...
Share:

GATE - Discrete Mathematics 3

Hi friends, This is a post under the series of posts labeled as GATE. I had created short hand written notes during my GATE preparation to revise for various topics. The posts under label GATE include formulae, equations, properties and other important points...
Share:

Monday, 19 June 2017

GATE - Discrete Mathematics 2

Hi friends, This is a post under the series of posts labeled as GATE. I had created short hand written notes during my GATE preparation to revise for various topics. The posts under label GATE include formulae, equations, properties and other important points...
Share:

Thursday, 15 June 2017

GATE - Discrete Mathematics 1

Hi friends, This is a post under the series of posts labeled as GATE. I had created short hand written notes during my GATE preparation to revise for various topics. The posts under label GATE include formulae, equations, properties and other important points...
Share:

Invert Binary Tree

Invert a binary tree. For example, convert 4 / \ 2 7 / \ / \ 1 3 6 9 to 4 / \ 7 2 / \ / \ 9 6 3 1 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 /** * Definition for a binary tree node. * struct TreeNode { * int val; * TreeNode *left; * TreeNode *right; * TreeNode(int x) : val(x),...
Share:

Saturday, 10 June 2017

GATE - Solution to Differential Equations

Hi friends, This is a post under the series of posts labeled as GATE. I had created short hand written notes during my GATE preparation to revise for various topics. The posts under label GATE include formulae, equations, properties and other important points...
Share:

GATE - Random Variable Distributions

Hi friends, This is a post under the series of posts labeled as GATE. I had created short hand written notes during my GATE preparation to revise for various topics. The posts under label GATE include formulae, equations, properties and other important points...
Share:

Remove Duplicates from Sorted List II

Given a sorted linked list, delete all nodes that have duplicate numbers, leaving only distinct numbers from the original list. For example, Given 1->2->3->3->4->4->5, return 1->2->5. Given 1->1->1->2->3, return 2->3. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 /** ...
Share:

Friday, 9 June 2017

Git & GitHub - 2 Step by Step Guide

Hi friends, In the previous post, we discussed the meanings of the terms Git & GitHub and also some of the other things we can do with GitHub. In this post, we will see a detailed step by step process of how to start using the GitHub for our projects.  Let's now go through the steps...
Share:

GATE - Miscellaneous 3

Hi friends, This is a post under the series of posts labeled as GATE. I had created short hand written notes during my GATE preparation to revise for various topics. The posts under label GATE include formulae, equations, properties and other important points...
Share:

GATE - Digital Logic Design 2

Hi friends, This is a post under the series of posts labeled as GATE. I had created short hand written notes during my GATE preparation to revise for various topics. The posts under label GATE include formulae, equations, properties and other important points...
Share:

Wednesday, 7 June 2017

GATE - Miscellaneous 1

Hi friends, This is a post under the series of posts labeled as GATE. I had created short hand written notes during my GATE preparation to revise for various topics. The posts under label GATE include formulae, equations, properties and other important points...
Share:

GATE - Miscellaneous 2

Hi friends, This is a post under the series of posts labeled as GATE. I had created short hand written notes during my GATE preparation to revise for various topics. The posts under label GATE include formulae, equations, properties and other important points...
Share:

Git & GitHub - 1 Basics

Hi friends, I have seen many students throughout my undergraduate and graduate studies trying to use Git & GitHub and failing interest soon enough due to lack of good available resources. So, I decided to write myself to help beginners start using Git & GitHub with whatever little knowledge I have on these. So, let's begin understanding about these two terms first. Git:  Git...
Share:

Tuesday, 6 June 2017

GATE - Functions

Hi friends, This is a post under the series of posts labeled as GATE. I had created short hand written notes during my GATE preparation to revise for various topics. The posts under label GATE include formulae, equations, properties and other important points...
Share:

GATE - Eigen Values

Hi friends, This is a post under the series of posts labeled as GATE. I had created short hand written notes during my GATE preparation to revise for various topics. The posts under label GATE include formulae, equations, properties and other important points...
Share:

Four Sum

Given an array of integers, find all combination of four elements in the array whose sum is equal to a given value X. Idea :     1) Find all pair sum, requires O(n^2) space     2) Sort the pair sum.     3) Find the 4 elements(2 pairs) using the approach in two pair sum solution in O(n^2) time. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 #include...
Share:

Contact Me

Name

Email *

Message *

Popular Posts