Deleteion of node in linked list

I just wanted to ask when we delete a node in LL do we not have to delete memory that was stored at that address?

We just change the pointers to other nodes instead of emptying the memory…

Hey @code_breaker-1001 In java We have Garbage collector which automatically deletes unused address memory(Which doesn’t hold any data) or non-pointed memory (Which is not pointed by any pointer).