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 ef882fd commit e530493Copy full SHA for e530493
docs/src/lecture_06/hw.md
@@ -15,7 +15,7 @@ x + 2*y*z - c*x
15
```
16
return an array of *unique alphabetically sorted symbols* representing variables in an expression.
17
```julia
18
-[:x, :y, :z, :c]
+[:c, :x, :y, :z]
19
20
Implement this in a function called `find_variables`. Note that there may be some edge cases that you may have to handle in a special way, such as
21
- variable assignments `r = x*x` should return the variable on the left as well (`r` in this case)
0 commit comments