Skip to content

Commit f5f2d54

Browse files
committed
Fix the table formatting so that it displays properly
1 parent 05bc78e commit f5f2d54

File tree

1 file changed

+8
-11
lines changed

1 file changed

+8
-11
lines changed

README.md

Lines changed: 8 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -37,16 +37,13 @@
3737
pointer pointing at the Head, the pointer is just null. The run time complexity for each of
3838
the base methods are as follows:
3939

40-
41-
╔═══════════╦═════════╦════════════╗
42-
║ Algorithm ║ Average ║ Worst Case ║
43-
╠═══════════╬═════════╬════════════╣
44-
║ Space ║ O(n) ║ O(n) ║
45-
║ Search ║ O(n) ║ O(n) ║
46-
║ Insert ║ O(1) ║ O(1) ║
47-
║ Delete ║ O(1) ║ O(1) ║
48-
╚═══════════╩═════════╩════════════╝
49-
40+
| Algorithm | Average | Worst Case |
41+
|:---------:|:-------:|:----------:|
42+
| Space | O(n) | O(n) |
43+
| Search | O(n) | O(n) |
44+
| Insert | O(1) | O(n) |
45+
| Delete | O(1) | O(n) |
46+
5047
* DoublyLinkedList
5148
* Stack
5249
* Queue
@@ -306,4 +303,4 @@
306303
```
307304

308305
### Contributing to Android Interview Questions
309-
Just make pull request. You are in!
306+
Just make pull request. You are in!

0 commit comments

Comments
 (0)