Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"python.testing.unittestArgs": [
"-v",
"-s",
".",
"-p",
"test_*.py"
],
"python.testing.pytestEnabled": false,
"python.testing.nosetestsEnabled": false,
"python.testing.unittestEnabled": true
}
32 changes: 32 additions & 0 deletions Exercise.02.ipynb
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
{
"metadata": {
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": 3
},
"orig_nbformat": 2
},
"nbformat": 4,
"nbformat_minor": 2,
"cells": [
{
"source": [
"## congruence class of a modulo\n",
"\n",
"Let a and n be integers with n > 0. The congruence class of a modulo n, denoted\n",
"$[a]n$, is the set of all integers that are congruent to a modulo n; i.e.,\n",
"$[a]n = {z ∈ Z | a − z = kn\\: for\\: some\\: k ∈ Z}$ ."
],
"cell_type": "markdown",
"metadata": {}
}
]
}
Loading