Skip to content

Commit dbbbf6e

Browse files
Week 54
1 parent d3edee2 commit dbbbf6e

File tree

1 file changed

+38
-0
lines changed

1 file changed

+38
-0
lines changed

Week54.ipynb

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
{
2+
"cells": [
3+
{
4+
"attachments": {},
5+
"cell_type": "markdown",
6+
"metadata": {},
7+
"source": [
8+
"## Project: Comparing DNA\n",
9+
"\n",
10+
"Finish step #3 of the project: Fill the first row / column of the table"
11+
]
12+
},
13+
{
14+
"cell_type": "code",
15+
"execution_count": null,
16+
"metadata": {
17+
"vscode": {
18+
"languageId": "plaintext"
19+
}
20+
},
21+
"outputs": [],
22+
"source": [
23+
"for i in range(cols):\n",
24+
" table[0][i] = i\n",
25+
"for i in range(rows):\n",
26+
" table[i][0] = i"
27+
]
28+
}
29+
],
30+
"metadata": {
31+
"language_info": {
32+
"name": "python"
33+
},
34+
"orig_nbformat": 4
35+
},
36+
"nbformat": 4,
37+
"nbformat_minor": 2
38+
}

0 commit comments

Comments
 (0)