From b68ef6a93e1a8211220db923e4e037c102c0f84f Mon Sep 17 00:00:00 2001 From: Krishna Chaithanya Dunuka Date: Fri, 1 Jun 2018 11:33:50 +0530 Subject: [PATCH] Added links for easy navigation --- README.md | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/README.md b/README.md index 67ea336..02161dd 100644 --- a/README.md +++ b/README.md @@ -2,19 +2,19 @@ In numerical computing in python, NumPy is essential. I'm writing simple (a few lines for each problem) but hopefully helpful exercises based on each of numpy's functions. The outline will be as follows. - * Array creation routines (DONE) - * Array manipulation routines (DONE) - * String operations (DONE) - * Numpy-specific help functions (DONE) - * Input and output (DONE) - * Linear algebra (DONE) - * Discrete Fourier Transform (DONE) - * Logic functions (DONE) - * Mathematical functions (DONE) - * Random sampling (numpy.random) (DONE) - * Set routines (DONE) - * Sorting, searching, and counting (DONE) - * Statistics (DONE) + * [Array creation routines](https://github.com/Kyubyong/numpy_exercises/blob/master/Array_creation_routines.ipynb) [(Solutions)](https://github.com/Kyubyong/numpy_exercises/blob/master/Array_creation_routines_solution.ipynb) + * [Array manipulation routines](https://github.com/Kyubyong/numpy_exercises/blob/master/Array_manipulation_routines.ipynb) [(Solutions)](https://github.com/Kyubyong/numpy_exercises/blob/master/Array_manipulation_routines_Solutions.ipynb) + * [String operations](https://github.com/Kyubyong/numpy_exercises/blob/master/String_operations.ipynb) [(Solutions)](https://github.com/Kyubyong/numpy_exercises/blob/master/String_operations_solutions.ipynb) + * [Numpy-specific help functions](https://github.com/Kyubyong/numpy_exercises/blob/master/Numpy-specific_help_functions.ipynb) [(Solutions)](https://github.com/Kyubyong/numpy_exercises/blob/master/Numpy-specific_help_functions_Solutions.ipynb) + * [Input and output](https://github.com/Kyubyong/numpy_exercises/blob/master/Input_and_Output.ipynb) [(Solutions)](https://github.com/Kyubyong/numpy_exercises/blob/master/Input_and_Output_Solutions.ipynb) + * [Linear algebra](https://github.com/Kyubyong/numpy_exercises/blob/master/Linear_algebra.ipynb) [(Solutions)](https://github.com/Kyubyong/numpy_exercises/blob/master/Linear_algebra_Solutions.ipynb) + * [Discrete Fourier Transform](https://github.com/Kyubyong/numpy_exercises/blob/master/Discrete_Fourier_Transform.ipynb) [(Solutions)](https://github.com/Kyubyong/numpy_exercises/blob/master/Discrete_Fourier_Transform_solutions.ipynb) + * [Logic functions](https://github.com/Kyubyong/numpy_exercises/blob/master/Logic_functions.ipynb) [(Solutions)](https://github.com/Kyubyong/numpy_exercises/blob/master/Logic_functions_Solutions.ipynb) + * [Mathematical functions](https://github.com/Kyubyong/numpy_exercises/blob/master/Mathematical_functions.ipynb) [(Solutions)](https://github.com/Kyubyong/numpy_exercises/blob/master/Mathematical_functions_solutions.ipynb) + * [Random sampling](https://github.com/Kyubyong/numpy_exercises/blob/master/Random_sampling.ipynb) [(Solutions)](https://github.com/Kyubyong/numpy_exercises/blob/master/Random_sampling_Solutions.ipynb) + * [Set routines](https://github.com/Kyubyong/numpy_exercises/blob/master/Set_routines.ipynb) [(Solutions)](https://github.com/Kyubyong/numpy_exercises/blob/master/Set_routines_Solutions.ipynb) + * [Sorting, searching, and counting](https://github.com/Kyubyong/numpy_exercises/blob/master/Sorting_searching_and_counting.ipynb) [(Solutions)](https://github.com/Kyubyong/numpy_exercises/blob/master/Sorting_searching_and_counting_Solutions.ipynb) + * [Statistics](https://github.com/Kyubyong/numpy_exercises/blob/master/Statistics.ipynb) [(Solutions)](https://github.com/Kyubyong/numpy_exercises/blob/master/Statistics_solutions.ipynb) Nov., 2016 Kyubyong