Skip to content

Commit f721fb6

Browse files
committed
table removing thead tags
1 parent ed1c40c commit f721fb6

File tree

2 files changed

+16
-14
lines changed

2 files changed

+16
-14
lines changed

Algorithm Analysis and Big O/.ipynb_checkpoints/Big O for Python Data Structures-checkpoint.ipynb

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -96,12 +96,13 @@
9696
"** Please note, in order to see this table, you may need to download this .ipynb file and view it locally, sometimes GitHub or nbveiwer have trouble showing the HTML for it. **\n",
9797
"\n",
9898
"<table border=\"1\" >\n",
99-
"<thead>\n",
100-
"<tr class=\"row-odd\"><th class=\"head\">Operation</th>\n",
101-
"<th class=\"head\">Big-O Efficiency</th>\n",
102-
"</tr>\n",
103-
"</thead>\n",
104-
"<tbody valign=\"top\">\n",
99+
" \n",
100+
" <tr>\n",
101+
" <th >Operation</th>\n",
102+
" <th>Big-O Efficiency</th>\n",
103+
" </tr>\n",
104+
" \n",
105+
"\n",
105106
"<tr class=\"row-even\"><td>index []</td>\n",
106107
"<td>O(1)</td>\n",
107108
"</tr>\n",
@@ -150,7 +151,7 @@
150151
"<tr class=\"row-odd\"><td>multiply</td>\n",
151152
"<td>O(nk)</td>\n",
152153
"</tr>\n",
153-
"</tbody>\n",
154+
"\n",
154155
"</table>"
155156
]
156157
},

Algorithm Analysis and Big O/Big O for Python Data Structures.ipynb

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -96,12 +96,13 @@
9696
"** Please note, in order to see this table, you may need to download this .ipynb file and view it locally, sometimes GitHub or nbveiwer have trouble showing the HTML for it. **\n",
9797
"\n",
9898
"<table border=\"1\" >\n",
99-
"<thead>\n",
100-
"<tr class=\"row-odd\"><th class=\"head\">Operation</th>\n",
101-
"<th class=\"head\">Big-O Efficiency</th>\n",
102-
"</tr>\n",
103-
"</thead>\n",
104-
"<tbody valign=\"top\">\n",
99+
" \n",
100+
" <tr>\n",
101+
" <th >Operation</th>\n",
102+
" <th>Big-O Efficiency</th>\n",
103+
" </tr>\n",
104+
" \n",
105+
"\n",
105106
"<tr class=\"row-even\"><td>index []</td>\n",
106107
"<td>O(1)</td>\n",
107108
"</tr>\n",
@@ -150,7 +151,7 @@
150151
"<tr class=\"row-odd\"><td>multiply</td>\n",
151152
"<td>O(nk)</td>\n",
152153
"</tr>\n",
153-
"</tbody>\n",
154+
"\n",
154155
"</table>"
155156
]
156157
},

0 commit comments

Comments
 (0)