mirror of
https://github.com/donnemartin/interactive-coding-challenges
synced 2026-01-06 17:38:02 +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,6 +34,8 @@
|
||||
"source": [
|
||||
"## Constraints\n",
|
||||
"\n",
|
||||
"* Can we assume this is a non-circular, singly linked list?\n",
|
||||
" * Yes\n",
|
||||
"* Do we expect the return to be in reverse order too?\n",
|
||||
" * Yes\n",
|
||||
"* What if one of the inputs is None?\n",
|
||||
@@ -41,6 +43,8 @@
|
||||
"* How large are these numbers--can they fit in memory?\n",
|
||||
" * Yes\n",
|
||||
"* Can we assume we already have a linked list class that can be used for this problem?\n",
|
||||
" * Yes\n",
|
||||
"* Can we assume this fits in memory?\n",
|
||||
" * Yes"
|
||||
]
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user