We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1ef13ec commit fd3b980Copy full SHA for fd3b980
1160_Find_Words_That_Can_Be_Formed_by_Characters.java
@@ -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
+/*
+ * 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
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
+ */
11
12
class Solution {
13
int [] map = new int[26];
0 commit comments