FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
JavaScript/Recursive/LetterCombination.js at master · TheAlgorithms/JavaScript · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
TheAlgorithms
/
JavaScript
Public
Uh oh!
There was an error while loading.
Please reload this page
.
Notifications
You must be signed in to change notification settings
Fork
5.8k
Star
34.2k
Code
Issues
21
Pull requests
192
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
JavaScript
/
Recursive
/
LetterCombination.js
Copy path
More file actions
More file actions
Latest commit
History
History
History
53 lines (48 loc) · 1.18 KB
Breadcrumbs
JavaScript
/
Recursive
/
LetterCombination.js
Copy path
File metadata and controls
53 lines (48 loc) · 1.18 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
/*
*
* Letter Combinations of a Phone Number
*
* Given a string containing digits from 2-9 inclusive,
* return all possible letter combinations that the number could represent.
* Return the answer in any order.
* A mapping of digits to letters (just like on the telephone buttons) is given below.
* Note that 1 does not map to any letters.
* More info: https://leetcode.com/problems/letter-combinations-of-a-phone-number/
*/
/*
*
@param
{
string
} digits
*
@returns
{
string[]
} all the possible combinations
*/
const
letterCombinations
=
(
digits
)
=>
{
const
length
=
digits
?.
length
const
result
=
[
]
if
(
!
length
)
{
return
result
}
const
digitMap
=
{
2
:
'abc'
,
3
:
'def'
,
4
:
'ghi'
,
5
:
'jkl'
,
6
:
'mno'
,
7
:
'pqrs'
,
8
:
'tuv'
,
9
:
'wxyz'
}
const
combinations
=
(
index
,
combination
)
=>
{
let
letter
let
letterIndex
if
(
index
>=
length
)
{
result
.
push
(
combination
)
return
}
const
digit
=
digitMap
[
digits
[
index
]
]
letterIndex
=
0
while
(
(
letter
=
digit
[
letterIndex
++
]
)
)
{
combinations
(
index
+
1
,
combination
+
letter
)
}
}
combinations
(
0
,
''
)
return
result
}
export
{
letterCombinations
}
Back
|
FazBrowse Home
|
New Git URL