How to find sticky bit dir/files

I need to find all sticky bit dir/files on my system and clean them up if necessary.
How to I write a script to do this?
Thanks.

find / -type d -perm -1000 -exec ls -ld {} \;

Will list the directories with sticky bit set.

find . -perm -1000