File tree Expand file tree Collapse file tree 3 files changed +20
-21
lines changed Expand file tree Collapse file tree 3 files changed +20
-21
lines changed Original file line number Diff line number Diff line change 1
1
# data-and-algorithms
2
2
Let's go over data structures and algorithms together!
3
+
3
4
We will use [ Cracking the Coding Interview Book] ( http://www.crackingthecodinginterview.com/ ) as reference.
4
5
5
- Feel free to add your solutions in your channel of your choice 😃
6
+ Feel free to add your solutions in your programming language of your choice 😃
7
+
6
8
7
- Run this script to create the folder structure for your favorite programming language
8
- ` sh createFolders.sh <Programming Language Name> `
9
+ Run the following script to create the directory structure for your programming language
10
+ if one is not already created
11
+
12
+ `bash createDirectories.sh <Programming Language>`
9
13
10
14
## Contributing
11
15
---
@@ -28,4 +32,5 @@ Check out [Noé Lomelí](https://github.com/noelomeli)'s video for [visual direc
28
32
Request an invite here: [ techqueria.org/slack] ( https://techqueria.org/communities/slack/ )
29
33
30
34
Follow along with the community on the ` #data-and-algorithms ` channel on our Slack
35
+
31
36
Make sure to also check out our ` #python ` ` #ruby ` ` #javascript ` and ` #golang ` channels while you're there
Original file line number Diff line number Diff line change
1
+ #! /bin/bash
2
+
3
+ DIRECTORY=" $( git rev-parse --show-toplevel) "
4
+
5
+ if [[ $# -lt 1 ]]; then
6
+ echo " Usage: bash createDirectories.sh <programming language>" >&2
7
+ exit 1
8
+ fi
9
+
10
+ programmingLanguage=" $1 "
11
+ rsync --archive --include=' */' --exclude=' *' " ${DIRECTORY} /Python/" \
12
+ " ${DIRECTORY} /${programmingLanguage} /"
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments