Gets it done solution in Clear category for Middle Characters by martin_b
def middle(t): return t[((len(t) - 1) // 2):(len(t) + 2) // 2]
June 3, 2018