Python Forum
Making list empty after return in function
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Making list empty after return in function
#11
This is probably fine, but ichabod's solution is quadratic time where you probably intend linear time. Here's part of the second solution I was referring to:
def flatten(nested_list, result=None):
    if result is None: result = []
The rest of the body should be the same as your original solution. This supports the same interface as your original solution, except that (as I lamented) someone could pass in the additional parameter.
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  Entry field random pull from list, each return own line Bear1981 6 678 Feb-25-2025, 06:09 AM
Last Post: Pedroski55
  what to return for an empty list Skaperen 2 1,113 May-24-2024, 05:17 PM
Last Post: Skaperen
  How do I calculate a ratio from 2 numbers and return an equivalent list of about 1000 Pleiades 8 20,643 Jan-05-2024, 08:30 PM
Last Post: sgrey
  Code with empty list not executing adeana 9 5,675 Dec-11-2023, 08:27 AM
Last Post: buran
  nested function return MHGhonaim 2 1,508 Oct-02-2023, 09:21 AM
Last Post: deanhystad
  return next item each time a function is executed User3000 19 5,343 Aug-06-2023, 02:29 PM
Last Post: deanhystad
  function return boolean based on GPIO pin reading caslor 2 2,025 Feb-04-2023, 12:30 PM
Last Post: caslor
  Making a function more efficient CatorCanulis 9 3,391 Oct-06-2022, 07:47 AM
Last Post: DPaul
  set.difference of two list gives empty result wardancer84 4 2,489 Jun-14-2022, 01:36 PM
Last Post: wardancer84
  Showing an empty chart, then input data via function kgall89 0 1,439 Jun-02-2022, 01:53 AM
Last Post: kgall89

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020