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 36d25a8 commit d935bdbCopy full SHA for d935bdb
README.md
@@ -160,6 +160,28 @@ genetic.evolve({
160
161
## Prefix
162
163
+Prefix Expression Notation
164
+
165
+```
166
++8+*8+7-80-38
167
168
169
+Postfix Expression Notation
170
171
172
+88780-+*38-++
173
174
175
+Infix Translation
176
177
+```text
178
+Step 1: 7 + 8 = 15
179
+Step 2: 8 * 15 = 120
180
+Step 3: 3 - 8 = -5
181
+Step 4: 120 + -5 = 115
182
+Step 5: 8 + 115 = 123
183
184
185
## Variable
186
187
## License
hello.js
@@ -86,5 +86,5 @@ genetic.evolve({
86
mutation: 0.3,
87
skip: 10 /* frequency for notifications */
88
}, {
89
- solution: 'Hola, como estas? Yo espero tu sientas mas bien.'
+ solution: 'Hello World'
90
})
0 commit comments