Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 88346eb

Browse files
refactor 1079
1 parent e05a377 commit 88346eb

File tree

1 file changed

+0
-19
lines changed

1 file changed

+0
-19
lines changed

src/main/java/com/fishercoder/solutions/_1079.java

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -5,25 +5,6 @@
55
import java.util.List;
66
import java.util.stream.IntStream;
77

8-
/**
9-
* 5087. Letter Tile Possibilities
10-
*
11-
* You have a set of tiles, where each tile has one letter tiles[i] printed on it.
12-
* Return the number of possible non-empty sequences of letters you can make.
13-
*
14-
* Example 1:
15-
* Input: "AAB"
16-
* Output: 8
17-
* Explanation: The possible sequences are "A", "B", "AA", "AB", "BA", "AAB", "ABA", "BAA".
18-
*
19-
* Example 2:
20-
* Input: "AAABBC"
21-
* Output: 188
22-
*
23-
* Note:
24-
* 1. 1 <= tiles.length <= 7
25-
* 2. tiles consists of uppercase English letters.
26-
* */
278
public class _1079 {
289
public static class Solution1 {
2910
public int numTilePossibilities(String tiles) {

0 commit comments

Comments
 (0)