
Asked in Persistent Systems
First Non-Repeating Character Problem Statement
You are given a string consisting of English alphabet characters. Your task is to identify and return the first character in the string that does not repeat. If every character repeats, return the first character of the string.
Input:
T (the number of test cases)
For each test case, a string consisting of English alphabet characters ('a' - 'z' and 'A' - 'Z').
Output:
For each test case, print the first non-repeating character in the string.
If no such character exists, print the first character of the string.
Example:
Input:
1
abcdabc
Output:
d
Constraints:
1 ≤ T ≤ 10
1 ≤ Length of Input String ≤ 104
Note:
You do not need to print anything; implement the function only.

AnswerBot
4mo
The task is to find the first non-repeating character in a string, or return the first character if all characters repeat.
Iterate through the string to count the frequency of each character.
Find the f...read more
Help your peers!
Add answer anonymously...
Top Software Engineer Interview Questions Asked at Persistent Systems
Q. Given a sentence, find the frequency of each word.
Q. What do you mean by cloud computing?
Q. What is a closure? Explain in detail with an example.
Interview Questions Asked to Software Engineer at Other Companies
Top Skill-Based Questions for Persistent Systems Software Engineer
Algorithms Interview Questions and Answers
250 Questions
Data Structures Interview Questions and Answers
250 Questions
Web Development Interview Questions and Answers
250 Questions
Java Interview Questions and Answers
250 Questions
Software Development Interview Questions and Answers
250 Questions
SQL Interview Questions and Answers
250 Questions
Stay ahead in your career. Get AmbitionBox app


Trusted by over 1.5 Crore job seekers to find their right fit company
80 L+
Reviews
10L+
Interviews
4 Cr+
Salaries
1.5 Cr+
Users
Contribute to help millions
AmbitionBox Awards
Get AmbitionBox app

