Count the Number of Special Characters I
You are given a string word. A letter is called special if it appears both in lowercase and uppercase in word. Return the number of special letters in word.
LeetCode Problem - 3120
import java.util.*;
class Solution {
// Function to count the nu...
perfinsights.hashnode.dev2 min read