Skip to content

Instantly share code, notes, and snippets.

View ajaypep's full-sized avatar

Ajay K ajaypep

View GitHub Profile
@chrisman
chrisman / css-diner.txt
Created August 2, 2017 18:21
solutions for css diner
# https://flukeout.github.io/ #
01. plate
02. bento
03. #fancy
04. plate apple
05. #fancy pickle
06. .small
07. orange.small
08. bento orange.small
/* Deleting a node from Binary search tree */
#include<iostream>
using namespace std;
struct Node {
int data;
struct Node *left;
struct Node *right;
};
//Function to find minimum in a tree.
Node* FindMin(Node* root)