@BikesAndBBQ Same! Just gotta be careful to remember that the answer might be wrong.
The other day Claude wrote code that used the Python `extend` method, which I didn't know about. I asked how `S.extend(b)` was different from `S += b` and it gave me some hooey about how the first one mutates S whereas the second one produces a new array and then rebinds S to it.
Fortunately another one of my work skills is being skeptical of other people's claims about how stuff works.
@frew @BikesAndBBQ Maybe I'll try that. My current approach is to treat the LLM's code like a junior developer's, to review it carefully and discuss it at length, which I enjoy.
In this case the code it wrote with `.extend` was correct, it was only its explanation of S += b that was wrong.