Create a function that given a type of curve will generate a list containing a samples amount of numbers calculated from said curve.
It's easier to see with a visual representation:

If samples = 3 and curve = "pow", we would sample 3 points along the x axis [0, 0.5, 1] and figure out the value of y, in the case of the pow curve the values are [0, 0.25, 1].
samples_from_curve(3, "linear") ➞ [0, 0.5, 1]
samples_from_curve(3, "pow") ➞ [0, 0.25, 1]
samples_from_curve(3, "sqrt") ➞ [0, 0.71, 1]
samples_from_curve(5, "linear") ➞ [0, 0.25, 0.5, 0.75, 1]
linear, pow, sqrt as shown in the picture.0 and 1 (inclusive).samples parameter will always be ≥ 2.