Given a sentence str. The problem is to remove all the palindromic words from the given sentence.
Examples:
Input : str = "Text contains malayalam and level words"
Output : Text contains and words
Input : str = "abc bcd"
Output : abc bcd
Remove all the palindromic words from the given sentence : https://www.geeksforgeeks.org/remove-palindromic-words-given-sentence/