
string = "Small brown bug bit a small brown dog on his small brown nose";
#Converts the string into lowercase
string = string.lower();
#Split the string into words using built-in function
words = string.split(" ");
print("Duplicate words in a given string : ");
for i in range(0, len(words)):
count = 1;
for j in range(i+1, len(words)):
if(words[i] == (words[j])):
count = count + 1;
#Set words[j] to 0 to avoid printing visited word
words[j] = "0";
#Displays the duplicate word if count is greater than 1
if(count > 1 and words[i] != "0"):
print(words[i]);Difficulty levels, time estimates, copy-paste starter prompts, and the exact skills each project teaches —…
Google Chrome has dominated web browsing for over a decade with 71.77% global market share.…
Perplexity just made its AI-powered browser, Comet, completely free for everyone on October 2, 2025.…
You've probably heard about ChatGPT Atlas, OpenAI's new AI-powered browser that launched on October 21,…
Perplexity Comet became free for everyone on October 2, 2025, bringing research-focused AI browsing to…
ChatGPT Atlas launched on October 21, 2025, but it's only available on macOS. If you're…