Skip to content

Instantly share code, notes, and snippets.

View nickysemenza's full-sized avatar
🙃
test123

Nicky Semenza nickysemenza

🙃
test123
View GitHub Profile
// Playground - noun: a place where people can play
import UIKit
var str = "Hello, playground"
import XCPlayground
XCPSetExecutionShouldContinueIndefinitely(continueIndefinitely: true)
@nickysemenza
nickysemenza / palindrome.py
Last active August 29, 2015 14:05
palindrome
def isPalindrome(input):
return str(input)==str(input)[::-1]
print isPalindrome("abcba")