Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View aswanthkoleri's full-sized avatar
🎯
Focusing

ASWANTH K aswanthkoleri

🎯
Focusing
View GitHub Profile
#include<stdio.h>
int isempty(int top)
{
if(top==-1)
{
return 1;
}
else
{
return 0;
@aswanthkoleri
aswanthkoleri / BDYFRND.cpp
Created February 20, 2017 15:52
BDYFRND
#include<bits/stdc++.h>
#include<map>
using namespace std;
int main()
{
int n,i,t;
long long int x;
map <long long int,int > m;
scanf("%d",&t);