From 2ad560b3f7f086a90456535f15558f2e6440b0f8 Mon Sep 17 00:00:00 2001 From: Kevin Nadro Date: Sun, 12 Jun 2016 21:34:52 -0700 Subject: [PATCH] Added Maze creation example MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit I saw that there isn’t anything on disjoint sets or mazes under the examples so I implemented the process of making a maze. I have visualized a maze creation before (https://github.com/nadr0/Maze). I have always been a fan of visualizing data structures or algorithms and I though this was the perfect chance! My code is rather large but it gets the job done. I --- gulpfile.babel.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gulpfile.babel.js b/gulpfile.babel.js index 7e23795..b6f4740 100644 --- a/gulpfile.babel.js +++ b/gulpfile.babel.js @@ -1,5 +1,7 @@ 'use strict'; +var Promise = require('es6-promise').Promise; + import path from 'path'; import gulp from 'gulp'; import uglify from 'gulp-uglify'; -- GitLab