Concept Flow - Array Deletion at End
Start with array
Check if array is empty?
Yes→Stop: nothing to delete
No
Remove last element
Update array size
Done
This flow shows checking if the array is empty, then removing the last element and updating the size.