Skip to content

Commit fd3b980

Browse files
committed
Formatted 1160_Find_Words_That_Can_Be_Formed_by_Characters.java
1 parent 1ef13ec commit fd3b980

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed

1160_Find_Words_That_Can_Be_Formed_by_Characters.java

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,13 @@
1-
// id: 1160
2-
// Name: Find Words That Can Be Formed by Characters
3-
// link: https://leetcode.com/problems/find-words-that-can-be-formed-by-characters/
4-
// Difficulty: Easy
1+
/*
2+
* 1160. Find Words That Can Be Formed by Characters
3+
* Problem Link: https://leetcode.com/problems/find-words-that-can-be-formed-by-characters/
4+
* Difficulty: Easy
5+
*
6+
* Solution Created by: Muhammad Khuzaima Umair
7+
* LeetCode : https://leetcode.com/mkhuzaima/
8+
* Github : https://github.com/mkhuzaima
9+
* LinkedIn : https://www.linkedin.com/in/mkhuzaima/
10+
*/
511

612
class Solution {
713
int [] map = new int[26];

0 commit comments

Comments
 (0)