Re: tree functions daily exercise: Range
thank -- http://mail.python.org/mailman/listinfo/python-list
tree functions daily exercise: Range
Here's the belated Java solution. import java.util.List; import java.util.ArrayList; import java.lang.Math; class math { public static List range(double n) { return range(1,n,1); } public static List range(double n, double m) { return range(n,m,1); } public s
