Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Count Words in a String
00:00
5 left

Count Words in a String

EasyPython

Problem

Write a program to count the number of words in a string.

Implement count_words(text), which accepts one string and returns an integer. A word is a maximal sequence of non-whitespace characters. Treat spaces, tabs, and newline characters as separators, ignore leading or trailing separators, and treat consecutive separators as one. Test inputs may represent tab and newline separators using the escaped sequences \\t and \ .

Constraints

  • 0 <= len(text) <= 10^5
  • text contains Unicode characters and whitespace separators
  • A word contains one or more non-whitespace characters

Function Signature

def count_words(text):
Interviewer

Your question is Count Words in a String. Start with the requirements in the Question tab.

Run and submit as often as you like. When you're ready, talk me through your approach or go straight to the code.

You need to log in / sign up to run or submit.
CodePython 3
You need to log in / sign up to run or submit.Ln 2
Run your code to see test output here.