Skip to content

Commit

Permalink
Formatted 1160_Find_Words_That_Can_Be_Formed_by_Characters.java
Browse files Browse the repository at this point in the history
  • Loading branch information
mkhuzaima committed Dec 4, 2023
1 parent 1ef13ec commit fd3b980
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions 1160_Find_Words_That_Can_Be_Formed_by_Characters.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
// id: 1160
// Name: Find Words That Can Be Formed by Characters
// link: https://leetcode.com/problems/find-words-that-can-be-formed-by-characters/
// Difficulty: Easy
/*
* 1160. Find Words That Can Be Formed by Characters
* Problem Link: https://leetcode.com/problems/find-words-that-can-be-formed-by-characters/
* Difficulty: Easy
*
* Solution Created by: Muhammad Khuzaima Umair
* LeetCode : https://leetcode.com/mkhuzaima/
* Github : https://github.com/mkhuzaima
* LinkedIn : https://www.linkedin.com/in/mkhuzaima/
*/

class Solution {
int [] map = new int[26];
Expand Down

0 comments on commit fd3b980

Please sign in to comment.