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

Longest consecutive sequence java implemenation #477

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
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
35 changes: 35 additions & 0 deletions C++/ValidParentheses.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
#include <iostream>
#include <unordered_map>
#include <stack>

class Solution {
public:
bool isValid(std::string s) {

// Odd-length strings cannot be valid
if(s.length() % 2 != 0) {
return false;
}

// Map parentheses pairs
std::unordered_map<char, char> parentheses = { {')', '('}, {']', '['}, {'}', '{'} };
std::stack<char> characters;

for (char current_char : s) {
// Check if the current character is a closing parentheses
if (parentheses.find(current_char) != parentheses.end()) {
// If the stack is empty or the stack top doesn't match the current closing parentheses type, return false
if (characters.empty() || characters.top() != parentheses[current_char]) {
return false;
}
// Otherwise, the parentheses match and the top element can be popped
characters.pop();
}
else {
// If current_char is not in the map, then that means it is an open parentheses, and can be pushed onto the stack
characters.push(current_char);
}
}
return characters.empty();
}
};
34 changes: 34 additions & 0 deletions Java/128.Longest-Consecutive-Sequence.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
import java.util.HashSet;
import java.util.Set;

class Solution {
public int longestConsecutive(int[] nums) {
if (nums.length == 0) {
return 0;
}

Set<Integer> numSet = new HashSet<>();
for (int num : nums) {
numSet.add(num);
}

int longestStreak = 0;

for (int num : numSet) {
// check if it's the start of a sequence
if (!numSet.contains(num - 1)) {
int currentNum = num;
int currentStreak = 1;

while (numSet.contains(currentNum + 1)) {
currentNum += 1;
currentStreak += 1;
}

longestStreak = Math.max(longestStreak, currentStreak);
}
}

return longestStreak;
}
}