Skip to content

Instantly share code, notes, and snippets.

View Zyro9922's full-sized avatar
🕷️
Boo!

Ali Hasan Zyro9922

🕷️
Boo!
  • Amazon
  • Bengaluru
  • 00:34 (UTC -12:00)
  • LinkedIn in/zyro9922
View GitHub Profile
/**
* Syed Ali Hasan (https://www.linkedin.com/in/Zyro9922)
**/
#include <bits/stdc++.h>
#include <algorithm>
using namespace std;
#define si(x) scanf("%d",&x)
/**
* ZYRO9922
**/
#include <bits/stdc++.h>
#include <algorithm>
using namespace std;
template <typename T>
@sarthak2007
sarthak2007 / GSoC19.md
Last active August 9, 2020 11:16
Final report of GSoC'19 project
@mycodeschool
mycodeschool / BalancedParentheses.cpp
Created October 29, 2013 00:49
C++ Program to check for balanced parentheses in an expression using stack.
/*
C++ Program to check for balanced parentheses in an expression using stack.
Given an expression as string comprising of opening and closing characters
of parentheses - (), curly braces - {} and square brackets - [], we need to
check whether symbols are balanced or not.
*/
#include<iostream>
#include<stack>
#include<string>
using namespace std;