Prompt
Write a Python function `flatten(nested)` that returns a single flat list containing every
non-list element of `nested`, in left-to-right order, however deeply the lists are nested.
Treat lists and tuples as nestable; everything else (ints, strings, etc.) is a leaf — do not
iterate into strings. Example: `flatten([1, [2, (3, 4)], [[5]]])` → `[1, 2, 3, 4, 5]`.
Put it in a single Python code block. It will be imported as `from solution import flatten`.when to use it
Community prompt sourced from the open-source GitHub repo Green-PT/honey-for-devs (MIT). A "Prompt" style prompt — adapt the placeholders and specifics to your task. Imported as-is and not independently retested here, so check the output before relying on it.
tags
codingcommunitydeveloper
source
Green-PT/honey-for-devs · MIT
more in Coding
Coding✓ tested
Senior code review (strict mode)
senior staff engineer running a merciless but fair review
Coding✓ tested
Debug by hypothesis, not by guessing
debugging partner who forms theories before touching code
Coding✓ tested
Generate tests from described behavior
test engineer who writes tests that would actually catch regressions