Skip to content

Instantly share code, notes, and snippets.

View shafiul's full-sized avatar
💭
Research Scientist, Software Engineer

Shafiul Azam Chowdhury shafiul

💭
Research Scientist, Software Engineer
View GitHub Profile
class Solution {
public:
string reverseParentheses(string s) {
deque<stringstream> stk;
stk.push_back(stringstream());
for(auto const & c : s){
if(c == '('){
stk.push_back(stringstream());
}else if(c == ')'){
/*
* Original script by: Shafiul Azam
* Version 4.0
* Modified by: Luigi Balzano
* Description:
* Inserts Countries and/or States as Dropdown List
* How to Use:
In Head section:
@shafiul
shafiul / bn-chrome.user.js
Created March 2, 2012 03:43
Bangla Phonetic Typing Support for Browsers
// ==UserScript==
// @name Automatic Bangla Phonetic Typing Support
// @namespace http://bengali.sourceforge.net
// @description Automatically makes all Text input & text-area fields of Chrome browser Bangla phonetic compatible. use Ctrl + Y to switch between Bangla & English
// @include *
// @exclude http://www.somewhereinblog.net/*
// ==/UserScript==
// abp_version = "1.1";