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

[PROBLEM] 49.Group Anagrams #214

Open
Bharathlax-2005 opened this issue Oct 30, 2023 · 1 comment
Open

[PROBLEM] 49.Group Anagrams #214

Bharathlax-2005 opened this issue Oct 30, 2023 · 1 comment
Assignees
Labels
difficulty: medium Medium difficulty problem. hacktoberfest Hacktoberfest issue. problem LeetCode problem.

Comments

@Bharathlax-2005
Copy link
Contributor

Difficulty

Medium

Problem Description

Given an array of strings strs, group the anagrams together. You can return the answer in any order.

An Anagram is a word or phrase formed by rearranging the letters of a different word or phrase, typically using all the original letters exactly once.

Example 1:

Input: strs = ["eat","tea","tan","ate","nat","bat"]
Output: [["bat"],["nat","tan"],["ate","eat","tea"]]

Example 2:

Input: strs = [""]
Output: [[""]]

Example 3:

Input: strs = ["a"]
Output: [["a"]]

Constraints:

  • 1 <= strs.length <= 104
  • 0 <= strs[i].length <= 100
  • strs[i] consists of lowercase English letters.

Link

https://leetcode.com/problems/group-anagrams/

@Bharathlax-2005 Bharathlax-2005 added hacktoberfest Hacktoberfest issue. problem LeetCode problem. labels Oct 30, 2023
@Bharathlax-2005
Copy link
Contributor Author

Can you please assign this issue to me @godkingjay?

@godkingjay godkingjay added the difficulty: medium Medium difficulty problem. label Oct 31, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
difficulty: medium Medium difficulty problem. hacktoberfest Hacktoberfest issue. problem LeetCode problem.
Projects
None yet
Development

No branches or pull requests

2 participants