We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1cd4368 commit 94e4476Copy full SHA for 94e4476
README.md
@@ -107,13 +107,8 @@ lmap = compose(list, map)
107
lmap(lambda x: x ** 2, range(10))
108
```
109
110
-Let's try some math.
111
-```
112
-f(x) = x^2 + 1
113
-g(x) = 2x - 1
114
-h(x) = -2x^3 + 3
115
116
-We want to represent `f * g * h` in a program, i.e. `fn(x) = f(g(h(x)))`
+Let's say we want to represent `f * g * h` in a program, i.e. `fn(x) = f(g(h(x)))`
+
117
``` python
118
f = lambda x: x**2 + 1
119
g = lambda x: 2*x - 1
0 commit comments