rename and ktx source files added

This commit is contained in:
SebastianoF
2020-01-12 14:22:49 +00:00
parent ac42b7e154
commit 3298f0258b
11 changed files with 1585 additions and 496 deletions

55
100_Numpy_random.ipynb Normal file
View File

@@ -0,0 +1,55 @@
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# 100 numpy exercises\n",
"\n",
"This is a collection of exercises that have been collected in the numpy mailing list, on stack overflow\n",
"and in the numpy documentation. The goal of this collection is to offer a quick reference for both old\n",
"and new users but also to provide a set of exercises for those who teach.\n",
"\n",
"\n",
"If you find an error or think you've a better way to solve some of them, feel\n",
"free to open an issue at <https://github.com/rougier/numpy-100>"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"File automatically generated. See the documentation to update questions/answers/hints programmatically."
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Run the `initialize.py` module, then call a random question with `pick()` an hint towards its solution with\n",
"`hint(n)` and the answer with `answer(n)`, where n is the number of the picked question."
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"%run initialise.py"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"pick()"
]
}
],
"metadata": {},
"nbformat": 4,
"nbformat_minor": 2
}