Now, about ``` files = files.plusElement(path) ```...
# announcements
e
Now, about
Copy code
files = files.plusElement(path)
As far as I can tell, this is appending path to the end of the list. This is an O(n) operation. Is there a way to add path to the front of the list which is a O(c) operation?