Company: eqtechnologic_4aug
Difficulty: medium
Count Unchanged Characters After Reversal Problem Description A company is transmitting its data to another server. To secure the data against malicious activity, they plan to reverse the data before transmitting. They want to know the number of data characters that do not change position even after the data stream is reversed. The network administrator has been tasked with ensuring the smooth transmission of the data. Write an algorithm for the network administrator to help in finding the number of data characters that do not change position even after the data stream is reversed. Input The input consists of a string - dataStream , representing the data to be transmitted through the network (N). Output Print an integer representing the number of data characters that do not change position even after the data stream is reversed. If no such character is found or the input string is empty, then print 0. Constraints 0 Note: The input string dataStream is case sensitive and made up of Engl