Create a function that is a Hashtag Generator by using the following rules:
false.str) or the result is an empty string, the function should return false.generate_hashtag(" Hello World " ) ➞ "#HelloWorld"
generate_hashtag("") ➞ false, "Expected an empty string to return false"
generate_hashtag("Innokodakademija Is Great") ➞ "#InnokodakademijaIsGreat", "Should remove spaces."
N/A