Chemical Formula Problem Statement
Given a chemical formula as a string, return the count of each atom present in the compound.
Explanation:
- An atomic element starts with an uppercase letter followed by zero or more lowercase letters.
- Element counts follow as one or more digits if greater than 1. No digits imply a count of 1.
- Formulas can be nested within parentheses, optionally followed by a multiplier.
Input:
The first line contains an integer 'T' (number of test cases). The next 'T' lines each contain a string representing a chemical formula.
Output:
Return the count of all elements for each test case as a string, sorted by element name. Include count if greater than 1. Each test case result should be on a new line.
Example:
Input:
1
C6H2(Cl3(OH2)3)3
Output:
C6Cl9H20O9
Constraints:
- 1 <= T <= 10
- 1 <= |S| <= 104
- Time Limit: 1 sec
Note:
- Element counts will not exceed 231.

AnswerBot
22d
Count atoms in a chemical formula, handling nested structures and multipliers.
Identify elements starting with an uppercase letter followed by lowercase letters.
Count digits following elements to deter...read more
Help your peers!
Add answer anonymously...
Amazon Software Developer interview questions & answers
A Software Developer was asked 1mo agoQ. What is HTML?
A Software Developer was asked 1mo agoQ. What is MySQL?
A Software Developer was asked 2mo agoQ. Given two strings s and t, return true if they are equal when both are typed int...read more
Popular interview questions of Software Developer
A Software Developer was asked 1mo agoQ1. What is HTML?
A Software Developer was asked 1mo agoQ2. What is MySQL?
A Software Developer was asked 2mo agoQ3. What is the system design for the cart feature in an e-commerce website?
Top HR questions asked in Amazon Software Developer
A Software Developer was asked 1mo agoQ1. Tell me about a time you had to get to the root cause of a problem
A Software Developer was asked 5mo agoQ2. What are the short-term and long-term goals for the team or organization?
A Software Developer was asked 5mo agoQ3. Why do you want to work at Amazon?
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

