Skip to content

Commit f15244b

Browse files
Moved python 2 FFT code to py
1 parent eddada4 commit f15244b

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed
File renamed without changes.

chapters/FFT/cooley_tukey.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ For some reason, though, putting code to this transformation really helped me fi
7777
[import:2-11, lang:"julia"](code/julia/fft.jl)
7878
{% sample lang="hs" %}
7979
[import:2-11, lang:"julia"](code/julia/fft.jl)
80-
{% sample lang="py2" %}
80+
{% sample lang="py" %}
8181
[import:2-11, lang:"julia"](code/julia/fft.jl)
8282
{% sample lang="scratch" %}
8383
[import:2-11, lang:"julia"](code/julia/fft.jl)
@@ -122,8 +122,8 @@ In the end, the code looks like:
122122
[import:27-57, lang:"c_cpp"](code/c++/fft.cpp)
123123
{% sample lang="hs" %}
124124
[import:6-19, lang:"haskell"](code/hs/fft.hs)
125-
{% sample lang="py2" %}
126-
[import:5-16, lang:"python"](code/python2/fft.py)
125+
{% sample lang="py" %}
126+
[import:5-16, lang:"python"](code/python/fft.py)
127127
{% sample lang="scratch" %}
128128
[import:14-31, lang:"julia"](code/julia/fft.jl)
129129
{% endmethod %}
@@ -230,9 +230,9 @@ Note: I implemented this in Julia because the code seems more straightforward in
230230
{% sample lang="hs" %}
231231
### Haskell
232232
[import, lang:"haskell"](code/hs/fft.hs)
233-
{% sample lang="py2" %}
233+
{% sample lang="py" %}
234234
### Python
235-
[import, lang:"python"](code/python2/fft.py)
235+
[import, lang:"python"](code/python/fft.py)
236236
{% sample lang="scratch" %}
237237
### Scratch
238238
Some rather impressive scratch code was submitted by Jie and can be found here: https://scratch.mit.edu/projects/37759604/#editor

0 commit comments

Comments
 (0)