mirror of
https://github.com/donnemartin/interactive-coding-challenges
synced 2026-01-07 09:58:03 +00:00
Update linked list constraints
Specify singly linked list, non circular. Also specify the solution fits in memory.
This commit is contained in:
@@ -34,10 +34,8 @@
|
||||
"source": [
|
||||
"## Constraints\n",
|
||||
"\n",
|
||||
"* Is this a singly or doubly linked list?\n",
|
||||
" * Singly\n",
|
||||
"* Is this a circular list?\n",
|
||||
" * No\n",
|
||||
"* Can we assume this is a non-circular, singly linked list?\n",
|
||||
" * Yes\n",
|
||||
"* Do we keep track of the tail or just the head?\n",
|
||||
" * Just the head\n",
|
||||
"* Can we insert None values?\n",
|
||||
|
||||
@@ -33,10 +33,8 @@
|
||||
"source": [
|
||||
"## Constraints\n",
|
||||
"\n",
|
||||
"* Is this a singly or doubly linked list?\n",
|
||||
" * Singly\n",
|
||||
"* Is this a circular list?\n",
|
||||
" * No\n",
|
||||
"* Can we assume this is a non-circular, singly linked list?\n",
|
||||
" * Yes\n",
|
||||
"* Do we keep track of the tail or just the head?\n",
|
||||
" * Just the head\n",
|
||||
"* Can we insert None values?\n",
|
||||
|
||||
Reference in New Issue
Block a user