Skip to content

Instantly share code, notes, and snippets.

@gnaggnoyil
gnaggnoyil / bia.hpp
Last active January 2, 2016 19:10
Binary Indexed Array
/*
Author: gnaggnoyil (gnaggnoyil at gmail.com)
License: WTFPL
*/
#ifndef _BIA_HPP_
#define _BIA_HPP_
#include <memory>
#include <utility>
#include <cstddef>
@summivox
summivox / tsconfig.json
Last active December 5, 2017 17:34
typescript
{
"compilerOptions": {
"outDir": "./lib",
"target": "es2017",
"module": "commonjs",
"declaration": true,
"strict": true,
"preserveConstEnums": true,
"sourceMap": true
},