Valid Palindrome - Leet Code Solution
Problem Statement Given a string, determine if it is a palindrome, considering…
September 10, 2020
Given two strings s and t , write a function to determine if t is an anagram of s.
Example
Input: s = "anagram", t = "nagaram"
Output: true
Input: s = "rat", t = "car"
Output: false
Note: You may assume the string contains only lowercase alphabets.
First try to understand what an Anagram is. Its NOT about checking order of characters in a string.
Its about checking that:
A simple solution can be to sort the strings first, then compare.
public boolean isAnagram_sort(String s, String t) {
if (s.length() != t.length()) {
return false;
}
char[] s1 = s.toCharArray();
char[] s2 = t.toCharArray();
Arrays.sort(s1);
Arrays.sort(s2);
return Arrays.equals(s1, s2);
}
It is equal to complexity taken by sorting.
Its O(nlogn)
Another simple solution is that we can use a HashMap<Character, Integer>
.
public boolean isAnagram(String s, String t) {
if (s.length() != t.length()) {
return false;
}
Map<Character, Integer> map = new HashMap<Character, Integer>();
for (int i=0; i<s.length(); i++) {
int count = map.getOrDefault(s.charAt(i), 0);
count ++;
map.put(s.charAt(i), count);
}
for (int i=0; i<t.length(); i++) {
int count = map.getOrDefault(t.charAt(i), 0);
if (count == 0) {
return false;
}
count --;
map.put(t.charAt(i), count);
}
return true;
}
Its O(n)
Since we know that there are only lowercase characters
. We know the unique number of characters will be 26
.
Integer array
of count 26
a
, second to b
and so on.public boolean isAnagram_array(String s, String t) {
if (s.length() != t.length()) {
return false;
}
int count[] = new int[26];
for (int i=0; i<s.length(); i++) {
count[s.charAt(i) - 'a'] ++;
}
for (int i=0; i<t.length(); i++) {
if (count[t.charAt(i) - 'a'] <= 0) {
return false;
}
count[t.charAt(i) - 'a'] --;
}
return true;
}
Note that t.charAt(i) - 'a'
is just to manipulate our indexes.
Its O(n)
Problem Statement Given a string, determine if it is a palindrome, considering…
Its every software engineer’s dream to work with the big FAANG companies…
Problem Statement Given a sorted array nums, remove the duplicates in-place such…
Problem Statement Given an array nums of n integers and an integer target, are…
Problem Statement Roman numerals are represented by seven different symbols: I…
Min Priority Queue is a data structure which manage a list of keys(values). And…
Introduction In this post we will see following: How to schedule a job on cron…
Introduction There are some cases, where I need another git repository while…
Introduction In this post, we will see how to fetch multiple credentials and…
Introduction I have an automation script, that I want to run on different…
Introduction I had to write a CICD system for one of our project. I had to…
Introduction Java log4j has many ways to initialize and append the desired…