Check if post exists

WordPress has a post_exists function that returns the post ID or 0 otherwise.
So you can do

if ( 0 === post_exists( $title ) ) {
    **YOUR_CODE_HERE**
}