Files created in last 24 hours

I need a script which list the files which is starting with the word heap*** and that is created before past 24 hours.I need the script using find command. please help me on this.

Can't help you with the script, you should do it yourself but here is the find command.

find . -type f -name "heap*" -mtime 0

PS -There are multiple similar posts on the forum.

Cheers,
K