79836031

Date: 2025-12-02 15:17:05
Score: 0.5
Natty:
Report link

purrr::map() solution alternative:

simple_list <- list(c(3, 1, 2))
purrr::map(simple_list, sort, decreasing = FALSE)
purrr::map(simple_list, sort, decreasing = TRUE)
Reasons:
  • Low length (1):
  • Has code block (-0.5):
Posted by: Patrick