From 0b48275aaa17233b73d7cba4e52dd9cf83ffd92a Mon Sep 17 00:00:00 2001 From: reddy Date: Thu, 30 Mar 2017 22:05:50 +0530 Subject: [PATCH] Fix typo in Excercise no.23,42. --- 100 Numpy exercises no solution.ipynb | 4 ++-- 100 Numpy exercises no solution.md | 4 ++-- 100 Numpy exercises.ipynb | 4 ++-- 100 Numpy exercises.md | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/100 Numpy exercises no solution.ipynb b/100 Numpy exercises no solution.ipynb index 2180813..0d99746 100644 --- a/100 Numpy exercises no solution.ipynb +++ b/100 Numpy exercises no solution.ipynb @@ -381,7 +381,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "#### 23. Create a custom dtype that describes a color as four unisgned bytes (RGBA) (★☆☆)" + "#### 23. Create a custom dtype that describes a color as four unsigned bytes (RGBA) (★☆☆)" ] }, { @@ -732,7 +732,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "#### 42. Consider two random array A anb B, check if they are equal (★★☆)" + "#### 42. Consider two random array A and B, check if they are equal (★★☆)" ] }, { diff --git a/100 Numpy exercises no solution.md b/100 Numpy exercises no solution.md index d304c52..23d921c 100644 --- a/100 Numpy exercises no solution.md +++ b/100 Numpy exercises no solution.md @@ -105,7 +105,7 @@ np.nan - np.nan -#### 23. Create a custom dtype that describes a color as four unisgned bytes (RGBA) (★☆☆) +#### 23. Create a custom dtype that describes a color as four unsigned bytes (RGBA) (★☆☆) @@ -204,7 +204,7 @@ np.sqrt(-1) == np.emath.sqrt(-1) -#### 42. Consider two random array A anb B, check if they are equal (★★☆) +#### 42. Consider two random array A and B, check if they are equal (★★☆) diff --git a/100 Numpy exercises.ipynb b/100 Numpy exercises.ipynb index ff17b65..fe2e9e8 100644 --- a/100 Numpy exercises.ipynb +++ b/100 Numpy exercises.ipynb @@ -444,7 +444,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "#### 23. Create a custom dtype that describes a color as four unisgned bytes (RGBA) (★☆☆)" + "#### 23. Create a custom dtype that describes a color as four unsigned bytes (RGBA) (★☆☆)" ] }, { @@ -850,7 +850,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "#### 42. Consider two random array A anb B, check if they are equal (★★☆)" + "#### 42. Consider two random array A and B, check if they are equal (★★☆)" ] }, { diff --git a/100 Numpy exercises.md b/100 Numpy exercises.md index e1f37d7..33cea29 100644 --- a/100 Numpy exercises.md +++ b/100 Numpy exercises.md @@ -192,7 +192,7 @@ Z = (Z - Zmin)/(Zmax - Zmin) print(Z) ``` -#### 23. Create a custom dtype that describes a color as four unisgned bytes (RGBA) (★☆☆) +#### 23. Create a custom dtype that describes a color as four unsigned bytes (RGBA) (★☆☆) ```python @@ -392,7 +392,7 @@ Z = np.arange(10) np.add.reduce(Z) ``` -#### 42. Consider two random array A anb B, check if they are equal (★★☆) +#### 42. Consider two random array A and B, check if they are equal (★★☆) ```python