From 0e2f7d78e654f9d47d31c5a7eac44cea9593ce5b Mon Sep 17 00:00:00 2001 From: Alexander Kuleshov Date: Tue, 29 Mar 2016 00:36:48 +0600 Subject: [PATCH] move collections outside of collections --- {collections/binaryTree => binaryTree}/binaryTree.go | 0 {collections/binaryTree => binaryTree}/binaryTree_test.go | 0 {collections/list => list}/list.go | 0 {collections/list => list}/list_test.go | 0 {collections/queue => queue}/queue.go | 0 {collections/queue => queue}/queue_test.go | 0 {collections/stack => stack}/stack.go | 0 {collections/stack => stack}/stack_test.go | 0 8 files changed, 0 insertions(+), 0 deletions(-) rename {collections/binaryTree => binaryTree}/binaryTree.go (100%) rename {collections/binaryTree => binaryTree}/binaryTree_test.go (100%) rename {collections/list => list}/list.go (100%) rename {collections/list => list}/list_test.go (100%) rename {collections/queue => queue}/queue.go (100%) rename {collections/queue => queue}/queue_test.go (100%) rename {collections/stack => stack}/stack.go (100%) rename {collections/stack => stack}/stack_test.go (100%) diff --git a/collections/binaryTree/binaryTree.go b/binaryTree/binaryTree.go similarity index 100% rename from collections/binaryTree/binaryTree.go rename to binaryTree/binaryTree.go diff --git a/collections/binaryTree/binaryTree_test.go b/binaryTree/binaryTree_test.go similarity index 100% rename from collections/binaryTree/binaryTree_test.go rename to binaryTree/binaryTree_test.go diff --git a/collections/list/list.go b/list/list.go similarity index 100% rename from collections/list/list.go rename to list/list.go diff --git a/collections/list/list_test.go b/list/list_test.go similarity index 100% rename from collections/list/list_test.go rename to list/list_test.go diff --git a/collections/queue/queue.go b/queue/queue.go similarity index 100% rename from collections/queue/queue.go rename to queue/queue.go diff --git a/collections/queue/queue_test.go b/queue/queue_test.go similarity index 100% rename from collections/queue/queue_test.go rename to queue/queue_test.go diff --git a/collections/stack/stack.go b/stack/stack.go similarity index 100% rename from collections/stack/stack.go rename to stack/stack.go diff --git a/collections/stack/stack_test.go b/stack/stack_test.go similarity index 100% rename from collections/stack/stack_test.go rename to stack/stack_test.go