Skip to content

Instantly share code, notes, and snippets.

View LionRoar's full-sized avatar
🍎

Ferris Ateniese LionRoar

🍎
View GitHub Profile
@LionRoar
LionRoar / Webpack.config,js
Created October 20, 2017 21:26
Webpack Setup
var path = require('path');
module.exports = {
// Entry Point
entry:'./src/js/index.js',
//Output point
output:{
path: path.resolve(__dirname,'dist'),
filename:'bundle.js'
},
@LionRoar
LionRoar / mergeSort.cpp
Created October 2, 2017 18:16
Merge Sort in C++
#include "mergeSort.h"
mergeSort::mergeSort(){}
mergeSort::~mergeSort(){}
void mergeSort::MergeSort(int a[], int n) {
MergeSort(a, 0, n-1);