Opening the reading…
Opening the reading…
DSA FUNDAMENTALS › STRING BASICS
This is a scratch drill — your code runs, nothing is graded or recorded. No test cases, no expected output, no verdict.
TASK
Build an ASCII frequency table for "cabbd", then scan only positive frequencies. Print the maximum as 'b' with count 2 and the minimum as 'a' with count 1, using the smallest ASCII character to resolve ties.
OUTPUT
Samplemaximum: 'b' count 2 minimum: 'a' count 1
What a finished answer prints, from the lesson. Nothing has run yet — press Run and this is replaced by your program’s own output.