Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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
```