Description Usage Arguments Examples
Insert A Single Task Efficiently Into An Already-Sorted List
1 | bisection_insert(task, tasks, tasks_column = "Task")
|
task |
The tast to be sorted, a character |
tasks |
The presorted list, a tibble |
tasks_column |
The column name of the tasks within the presorted list |
1 2 3 4 | task <- "Fix the roof"
tasks <- tibble("To-Do" = c("task a", "task b", "task c",
"task d", "task e", "task f", "task g"))
bisection_insert(task, tasks, tasks_column = "To-Do")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.