Writing is problem,Just like in HDD data is written to empty blocks first and writing speed is full but if block sector is not really empty, ie.has some data on it it has to be fully erased/deleted first and that triples number of operations. Even when data is deleted thru OS it's still on disk until it's overwritten or brought to zero state.
Problem is amplified with SSDs because they simultaneously reed or write thru 4 channels(One of reasons it's faster than HDDs which do it thru only one channel) and all writing is suspended until al target cells are in zero state. Couple of features of SSDs are GC (Garbage Collection) triggered by Trim command that brings all free (marked as deleted data) cells to zero state. Another feature of SSD is that alternates writes to free cells so it equilizes number of writes to all cells so they are used equal number of writes and that prolongs SSD's life, for that to work some" spare/empty space is needed and if that space is not adequate, it may shorten SSD's life span.