Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

0567-permutation-in-string_UPDATED #2700

Merged
merged 5 commits into from
Aug 4, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .idea/.gitignore

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

51 changes: 51 additions & 0 deletions .idea/codeStyles/Project.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions .idea/codeStyles/codeStyleConfig.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions .idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 11 additions & 0 deletions Neetcode-update.iml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<module type="JAVA_MODULE" version="4">
<component name="NewModuleRootManager" inherit-compiler-output="true">
<exclude-output />
<content url="file://$MODULE_DIR$">
<sourceFolder url="file://$MODULE_DIR$/java" isTestSource="false" />
</content>
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
</component>
</module>
46 changes: 16 additions & 30 deletions java/0567-permutation-in-string.java
Original file line number Diff line number Diff line change
@@ -1,34 +1,20 @@
class Solution {

public class Solution {
public boolean checkInclusion(String s1, String s2) {
if (s2.length() < s1.length()) return false;
int[] arr = new int[26];
//add the values to the hash array
for (int i = 0; i < s1.length(); i++) {
arr[s1.charAt(i) - 'a']++;
int n = s1.length();
int[] freq = new int[26];
int m = s2.length();
for (int i = 0; i < n; i++) {
freq[s1.charAt(i) - 'a']++;
}
int i = 0;
int j = 0;
//point j to it's position
for (; j < s1.length(); j++) {
arr[s2.charAt(j) - 'a']--;
int[] freq2 = new int[26];
for (int i = 0; i < m; i++) {
freq2[s2.charAt(i) - 'a']++;
if (i >= n) {
freq2[s2.charAt(i - n) - 'a']--;
}
if (Arrays.equals(freq, freq2))
return true;
}
j--;
if (isEmpty(arr)) return true;
while (j < s2.length()) {
arr[s2.charAt(i) - 'a']++;
i++;
j++;
if (j < s2.length()) arr[s2.charAt(j) - 'a']--;
if (isEmpty(arr)) return true;
}
return isEmpty(arr);
}

public boolean isEmpty(int[] arr) {
for (int i = 0; i < arr.length; i++) {
if (arr[i] != 0) return false;
}
return true;
return false;
}
}
}
18 changes: 18 additions & 0 deletions java/0705-desgin-hashset.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
class MyHashSet {
boolean [] setArray;
public MyHashSet() {
setArray=new boolean[(int)1e6+1];
}

public void add(int key) {
setArray[key]=true;
}

public void remove(int key) {
setArray[key]=false;
}

public boolean contains(int key) {
return setArray[key];
}
}