This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[color] | |
branch = auto | |
diff = auto | |
status = auto | |
[color "branch"] | |
current = yellow reverse | |
local = yellow | |
remote = green | |
[color "diff"] | |
meta = yellow bold |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env ruby | |
## Find The Longest Palindrome In A String | |
## October 15, 2010 | |
## | |
## http://programmingpraxis.com/2010/10/15/find-the-longest-palindrome-in-a-string/ | |
## | |
## Greplin issued a programming challenge recently that required programmers | |
## to solve three problems; when completed, Greplin issued an invitation to | |
## send them a resume. The first problem required the programmer to find the |
NewerOlder