Skip to content

Commit 333e6af

Browse files
committed
Full codes linked
1 parent 91009de commit 333e6af

7 files changed

+14
-7
lines changed

exercises/approximating-pi.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ def distance(x, y):
184184
print(pi)
185185
```
186186

187-
Simulation:
187+
Simulation: code is [here](materials/approximating-pi/simulation.py).
188188
<p align="center">
189189
<img src="images/monte-carlo.gif">
190190
</p>

exercises/fuzzy-search.md

+5-2
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,14 @@ To find the similarity, we need to give ranks to every file and return the one w
99
### Practical - Fuzzy Search
1010

1111
Write a function that gets an input, and returns the most similar results in a file.
12+
Example movie list is [here](materials/fuzzy-search/movielist.txt).
1213

1314
```python
1415
def distance(string, pattern): # Levenshtein Distance
1516
string = " " + string.lower() # Make lowercase
1617
pattern = " " + pattern.lower() # Make lowercase
1718

18-
matrix = {} Empty matrix
19+
matrix = {} # Empty matrix
1920

2021
for i in range(len(string)):
2122
matrix[i, 0] = i # Fill first row from 0 to length of the string
@@ -33,7 +34,7 @@ def distance(string, pattern): # Levenshtein Distance
3334
return matrix[len(string) - 1, len(pattern) - 1] # return the value in last element
3435

3536

36-
movies = open("movies.txt").read().split("\n") # Get the movie list
37+
movies = open("movielist.txt").read().split("\n") # Get the movie list
3738
movies_with_ranks = {} # Create empty dictionary
3839

3940
query = str(input("Enter movie : ")) # input
@@ -52,6 +53,8 @@ for i in range(len(sorted_list)):
5253
break
5354
```
5455

56+
Full code can be accessed from [here](materials/fuzzy-search/search.py).
57+
5558
#### **References:**
5659

5760
_Search Algorithms:_

exercises/image-kernels.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -78,4 +78,6 @@ def filter(image, kernel):
7878

7979
**Result:**
8080

81-
<p align="center"><img src="images/image-kernels.png"></p>
81+
<p align="center"><img src="images/image-kernels.png"></p>
82+
83+
_Full code is [here](materials/image-kernels/demo.py)._

exercises/linear-regression.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ ax[1].legend(["Least Squares Regression Line"])
6060
plt.show()
6161
```
6262

63-
The result should be like this.
63+
The result should be like this. Code can be accessed from [here](materials/linear-regression/regression.py).
6464

6565
<p align="center">
6666
<img src="images/regression-result.png">

exercises/markov-chains.md

+2
Original file line numberDiff line numberDiff line change
@@ -66,3 +66,5 @@ def run(n, initialWordIndex):
6666
learn(text)
6767
run(100, 0)
6868
```
69+
70+
You can find the working example code from [here](materials/markov-chains/demo.py).

exercises/mass-spring-damper-simulation.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ def set(arg):
7777
Visualizer(callback=set, interval=dt * 1000, simulation_time=30, initial=(position, 0, velocity, 0, acceleration, 0))
7878
```
7979

80-
The result should be like this.
80+
The result should be like this. You can find the full code from [here](materials/mass-spring-damper-simulation/demo.py).
8181

8282
<p align="center">
8383
<img src="images/msd-simulation.gif">

exercises/perlin-noise.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ mlab.surf(z) # Surface Plot
7272
mlab.show()
7373
```
7474

75-
The result should be like this.
75+
The result should be like this. You can find the full code from [here](materials/perlin-noise/opensimplex-demo.py).
7676

7777
<p align="center">
7878
<img src="images/3d-simplex.png">

0 commit comments

Comments
 (0)