Complexity Reduction in Many-Armed Simulation Algorithm

By introducing more arms, we've only made things worse. Let's try a different approach.

			def reduce_complexity(arms):
				if arms > 3:
					return 3
				else:
					return arms