Skip to content

Instantly share code, notes, and snippets.

View pmbrent's full-sized avatar

Pat M. Brent pmbrent

View GitHub Profile

Keybase proof

I hereby claim:

  • I am pmbrent on github.
  • I am pmbrent (https://keybase.io/pmbrent) on keybase.
  • I have a public key ASDrrx2inRDsVdmqkFCB3JwS2HuSc7ZWL4Csyrugs68EHgo

To claim this, I am signing this object:

@pmbrent
pmbrent / AlphaSort.java
Created March 15, 2015 18:12
AlphaSort
import java.io.*;
/* Code by Patricia M. Brent (patriciambrent@gmail.com | blackcat42 on GitHub)
Completed for a CodeEval challenge 03/14/15 [Happy Pi Day!]
This class generates an alphabetized, comma-delimited list of permutations
for a given substring, using ASCII character sort order 1Aa.
This project is my first implementation of QuickSort.
It became expedient to give several methods access to the same array,
so I opted to have the class instantiate itself. */