Skip to content

Instantly share code, notes, and snippets.

View bamoha's full-sized avatar

Bashir Hamza bamoha

View GitHub Profile
@bamoha
bamoha / class.py
Created February 11, 2017 21:36
clsses.py
class Human:
def __init__(self):
return "instance"
def sex(self):
pass
def age(self):
pass
def is_alive(self):
import httplib2
import os
import sys
from apiclient.discovery import build
from apiclient.errors import HttpError
from oauth2client.client import flow_from_clientsecrets
from oauth2client.file import Storage
from oauth2client.tools import argparser, run_flow
const isAnagram = (s, t) => {
if(s.length !== t.length){
return false
}
let charA = getCharObj(s)
let charB = getCharObj(t)