mirror of
https://github.com/TheAlgorithms/JavaScript.git
synced 2025-07-07 11:08:54 +08:00

* [feat] New algorithm * [test] Add new test for ParityOutlier.js * [fix] Reset indentation * [fix] Reset indentation * [fix] Style changes * fix: improve code efficiency and a glitch * test: adds a new possible test case * fix: style fix * fix: delete redundant comments and else statements * [fix] style fix * feat: New algorithm * fix: fixed custom code symbols * test: add test for MorseCode * test: add case with custom code symbols * delete files from main branch * fix: style fix * fix: style fix * fix: delete unnecessary quotes
86 lines
1.7 KiB
JavaScript
86 lines
1.7 KiB
JavaScript
/**
|
|
* @author mrmagic2020
|
|
* @description Enciphers a combination of letters, numbers and symbols into morse code.
|
|
* @see https://en.wikipedia.org/wiki/Morse_code
|
|
* @param {string} msg The message to be enciphered.
|
|
* @param {string} dot Symbol representing the dots.
|
|
* @param {string} dash Symbol representing the dash.
|
|
* @returns {string} Enciphered morse code.
|
|
* @example morse('Hello World!') = '**** * *-** *-** --- *-- --- *-* *-** -** -*-*--'
|
|
*/
|
|
const morse = (msg, dot = '*', dash = '-') => {
|
|
const key = {
|
|
A: '*-',
|
|
B: '-***',
|
|
C: '-*-*',
|
|
D: '-**',
|
|
E: '*',
|
|
F: '**-*',
|
|
G: '--*',
|
|
H: '****',
|
|
I: '**',
|
|
J: '*---',
|
|
K: '-*-',
|
|
L: '*-**',
|
|
M: '--',
|
|
N: '-*',
|
|
O: '---',
|
|
P: '*--*',
|
|
Q: '--*-',
|
|
R: '*-*',
|
|
S: '***',
|
|
T: '-',
|
|
U: '**-',
|
|
V: '***-',
|
|
W: '*--',
|
|
X: '-**-',
|
|
Y: '-*--',
|
|
Z: '--**',
|
|
1: '*----',
|
|
2: '**---',
|
|
3: '***--',
|
|
4: '****-',
|
|
5: '*****',
|
|
6: '-****',
|
|
7: '--***',
|
|
8: '---**',
|
|
9: '----*',
|
|
0: '-----',
|
|
'.': '*-*-*-',
|
|
',': '--**--',
|
|
'?': '**--**',
|
|
'!': '-*-*--',
|
|
'\'': '*----*',
|
|
'"': '*-**-*',
|
|
'(': '-*--*',
|
|
')': '-*--*-',
|
|
'&': '*-***',
|
|
':': '---***',
|
|
';': '-*-*-*',
|
|
'/': '-**-*',
|
|
_: '**--*-',
|
|
'=': '-***-',
|
|
'+': '*-*-*',
|
|
'-': '-****-',
|
|
$: '***-**-',
|
|
'@': '*--*-*'
|
|
}
|
|
|
|
let newMsg = ''
|
|
|
|
msg.toString().split('').forEach((e) => {
|
|
if (/[a-zA-Z]/.test(e)) {
|
|
newMsg += key[e.toUpperCase()].replaceAll('*', dot).replaceAll('-', dash)
|
|
} else if (Object.keys(key).includes(e)) {
|
|
newMsg += key[e].replaceAll('*', dot).replaceAll('-', dash)
|
|
} else {
|
|
newMsg += e
|
|
}
|
|
newMsg += ' '
|
|
})
|
|
|
|
return newMsg.trim()
|
|
}
|
|
|
|
export { morse }
|