Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jeff1evesque/algorithm-snippets
Contains various algorithm snippets and exercises
https://github.com/jeff1evesque/algorithm-snippets
Last synced: 3 days ago
JSON representation
Contains various algorithm snippets and exercises
- Host: GitHub
- URL: https://github.com/jeff1evesque/algorithm-snippets
- Owner: jeff1evesque
- Created: 2015-02-25T18:10:38.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2015-02-25T20:33:06.000Z (almost 10 years ago)
- Last Synced: 2024-11-08T06:06:18.911Z (about 2 months ago)
- Language: Python
- Homepage:
- Size: 227 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Algorithm Snippets
================This repository contains various algorithm exercises, some were asked during my interviews:
- [Google](http://www.google.com/about/datacenters/) (Data Center)
- [Grist Labs](http://www.getgrist.com/)
- [The New York Times](http://www.nytimes.com/)##Configuration
###GIT
Fork this project in your GitHub account, then clone your repository:
```
cd /var/
sudo mv www/ _www/
sudo git clone https://[YOUR-USERNAME]@github.com/[YOUR-USERNAME]/machine-learning.git www
```Then, change the *file permissions* for the entire project by issuing the command:
```
cd /var/
sudo chown -R jeffrey:sudo www
```**Note:** change 'jeffrey' to the user account YOU use.
Then, add the *Remote Upstream*, this way we can pull any merged pull-requests:
```
cd /var/www/
git remote add upstream https://github.com/[YOUR-USERNAME]/machine-learning.git
```