当前位置:网站首页>LeetCode2 电话号码的字母组合
LeetCode2 电话号码的字母组合
2022-08-02 14:09:00 【N.S.N】
给定一个仅包含数字 2-9 的字符串,返回所有它能表示的字母组合。
给出数字到字母的映射如下(与电话按键相同)。注意 1 不对应任何字母。
示例:
输入:“23”
输出:[“ad”, “ae”, “af”, “bd”, “be”, “bf”, “cd”, “ce”, “cf”].
说明:
尽管上面的答案是按字典序排列的,但是你可以任意选择答案输出的顺序。
var letterCombinations = function(digits) {
let tel = ['', 1, 'abc', 'def', 'ghi', 'jkl', 'mno', 'pqrs', 'tuv', 'wxyz'];
let nums = digits.split('')
let code = nums.map(num => {
if (tel[num]) {
return tel[num]
}
})
if (digits.length === 1) {
if (parseInt(digits) > 1) {
return code[0].split('')
} else {
return []
}
} else {
let combCode = (arr) => {
let temp = []
if(arr.length > 1){
for (var i = 0; i < arr[0].length; i++) {
for (var j = 0; j < arr[1].length; j++) {
temp.push(`${
arr[0][i]}${
arr[1][j]}`)
}
}
}
arr.splice(0, 2, temp)
if (arr.length > 1) {
combCode(arr)
} else {
return temp
}
return arr[0]
}
return combCode(code)
}
};
边栏推荐
猜你喜欢
随机推荐
GICv3/v4-软件概述
系统线性、时不变、因果判断
Bash shell位置参数
LLVM系列第八章:算术运算语句Arithmetic Statement
蓝牙温度检测系统(基于BT08-B蓝牙模块)
LLVM系列第四章:逻辑代码块Block
2020-02-06-快速搭建个人博客
It is not allowed to subscribe with a(n) xxx multiple times.Please create a fresh instance of xxx
STM32F1和F4的区别
Tensorflow常用函数
基于深度学习的配准框架
LLVM系列第二十章:写一个简单的Function Pass
流,向量场,和微分方程
PyTorch⑨---卷积神经网络_线性层
LLVM系列第七章:函数参数Function Arguments
ConstraintLayout from entry to abandonment
为android系统添加产品的过程
FP7128内置MOS降压恒流调光深度0.01%高辉共阳调光方案
vscode compiles the keil project and burns the program
设备驱动框架简介