Skip to content

Instantly share code, notes, and snippets.

View Bentley912's full-sized avatar

Patrick Bentley Bentley912

View GitHub Profile
@Bentley912
Bentley912 / gist:370c49ec2e2f2dcdc965118f8116ac73
Last active October 2, 2017 21:46
Helpful Simple Algorithms That You May Need

Helpful Concepts to Master for Early Programmers

Splitting and Reversing a String

  str = str.split('').reverse().join('');
  return str;
}

reverseString("hello"); ```
@Bentley912
Bentley912 / README-Template.md
Created September 3, 2017 16:15 — forked from PurpleBooth/README-Template.md
A template to make good README.md

Project Title

One Paragraph of project description goes here

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites