Live Batches
Masterclasses
Menu
Free Courses
Account
Login / Sign Up

Count Characters

Easy Acceptance 85.00% Points 20.00

You are given a string s. Your task is to count the total number of characters in the string.

Return the count.

Examples
Example 1

Example 1

Input: s = "hello"

Output: 5

Explanation: The string contains 5 characters.

Example 2

Example 2

Input: s = "abcd"

Output: 4

Explanation: There are 4 characters in the string.

Example 3

Example 3

Input: s = "a"

Output: 1

Explanation: The string has only one character.

Hints
Hint 1
N/A
Constraints
  • 1 = length of s = 105
  • The string contains printable characters only
Companies
Microsoft Apple Mastercard
Topics
Recursion
Solution.cs C#JavaPythonC++Javascript

Unlock the code editor

Sign in to write, run, and submit your solution against the full test suite.

  • Run code against sample & hidden test cases
  • Save submissions and track your streak
  • Compare with editorial & community solutions