Skip to content

Commit

Permalink
Exercise 17 corrected after #22
Browse files Browse the repository at this point in the history
  • Loading branch information
lexnekr committed Oct 31, 2018
1 parent 3580544 commit edc841c
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions 100_Numpy_exercises.ipynb
Expand Up @@ -339,6 +339,7 @@
"print(np.nan == np.nan)\n",
"print(np.inf > np.nan)\n",
"print(np.nan - np.nan)\n",
"print(np.nan in set([np.nan]))\n"
"print(0.3 == 3 * 0.1)"
]
},
Expand Down
1 change: 1 addition & 0 deletions 100_Numpy_exercises.md
Expand Up @@ -146,6 +146,7 @@ print(0 * np.nan)
print(np.nan == np.nan)
print(np.inf > np.nan)
print(np.nan - np.nan)
print(np.nan in set([np.nan]))
print(0.3 == 3 * 0.1)
```

Expand Down
1 change: 1 addition & 0 deletions 100_Numpy_exercises_no_solution.ipynb
Expand Up @@ -284,6 +284,7 @@
"np.nan == np.nan\n",
"np.inf > np.nan\n",
"np.nan - np.nan\n",
"np.nan in set([np.nan])\n",
"0.3 == 3 * 0.1\n",
"```"
]
Expand Down
1 change: 1 addition & 0 deletions 100_Numpy_exercises_no_solution.md
Expand Up @@ -82,6 +82,7 @@ free to open an issue at <https://github.com/rougier/numpy-100>
np.nan == np.nan
np.inf > np.nan
np.nan - np.nan
np.nan in set([np.nan])
0.3 == 3 * 0.1
```

Expand Down
1 change: 1 addition & 0 deletions 100_Numpy_exercises_with_hint.ipynb
Expand Up @@ -301,6 +301,7 @@
"np.nan == np.nan\n",
"np.inf > np.nan\n",
"np.nan - np.nan\n",
"np.nan in set([np.nan])\n"
"0.3 == 3 * 0.1\n",
"```"
]
Expand Down
1 change: 1 addition & 0 deletions 100_Numpy_exercises_with_hint.md
Expand Up @@ -116,6 +116,7 @@ free to open an issue at <https://github.com/rougier/numpy-100>
np.nan == np.nan
np.inf > np.nan
np.nan - np.nan
np.nan in set([np.nan])
0.3 == 3 * 0.1
```

Expand Down

0 comments on commit edc841c

Please sign in to comment.