Skip to content

Instantly share code, notes, and snippets.

View adarshdec23's full-sized avatar

Adarsh Alangar adarshdec23

View GitHub Profile
@adarshdec23
adarshdec23 / coding_game.py
Created February 14, 2018 04:04
Coding Game 2017
import sys
import math
import functools
MU = 0
MT = 1
OU = 2
OT = 3
CA = 4
@adarshdec23
adarshdec23 / ConsoleWrite.py
Created December 3, 2016 18:33
A python method to write logs to the console.
from datetime import datetime
def ConsoleWrite(messageType, message, variable = None):
print datetime.now().strftime('%Y-%m-%d %H:%M:%S'),
print "[" + messageType + "]\t",
if variable:
print type(variable).__name__, ":", message
print(variable)
else: