mirror of
https://github.com/donnemartin/interactive-coding-challenges.git
synced 2024-03-22 13:11:13 +08:00
Merge branch 'master' of https://github.com/donnemartin/interactive-coding-challenges
* 'master' of https://github.com/donnemartin/interactive-coding-challenges: minor phrasing fix
This commit is contained in:
commit
6276624914
|
@ -62,7 +62,7 @@
|
||||||
"* Our buffer will hold elements in reverse sorted order, smallest at the top\n",
|
"* Our buffer will hold elements in reverse sorted order, smallest at the top\n",
|
||||||
"* Store the current top element in a temp variable\n",
|
"* Store the current top element in a temp variable\n",
|
||||||
"* While stack is not empty\n",
|
"* While stack is not empty\n",
|
||||||
" * While buffer is empty or buffer top is > than temp\n",
|
" * While buffer is not empty or buffer top is > than temp\n",
|
||||||
" * Move buffer top to stack\n",
|
" * Move buffer top to stack\n",
|
||||||
" * Move temp to top of buffer\n",
|
" * Move temp to top of buffer\n",
|
||||||
"* Return buffer\n",
|
"* Return buffer\n",
|
||||||
|
|
Loading…
Reference in New Issue
Block a user