All pastes #2077295 Raw Edit

Starstorm

public python v1 · immutable
#2077295 ·published 2011-06-09 13:48 UTC
rendered paste body
results = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]for x in range(10):	for y in range(10):		for z in range(10):			if x <= y & x >= z:				results[x]=results[x]+1			elif x <= z & x >= y:				results[x]=results[x]+1			elif y <= x & y >= z:				results[y]=results[y]+1			elif y <= z & y >= x:				results[y]=results[y]+1			elif z <= x & z >= y:				results[z]=results[z]+1			elif z <= y & z >= x:				results[z]=results[z]+1print resultsprint results[0]+results[1]+results[2]+results[3]+results[4]+results[5]+results[6]+results[7]+results[8]+results[9]