Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 484 Bytes

README.md

File metadata and controls

28 lines (20 loc) · 484 Bytes

First Recurring Character

Write a program that outputs the first recurring character in a string.

Input Description

A string of alphabetical characters. Example:

ABCDEBC

Output Description

The first recurring character from the input. From the above example:

B

Note

What is exactly the definition of 'first recurring character'?

  • It is the character that recurs first (B in the series ABBA)

Examples

ABCDEBC ➞ B
ABBA ➞ B