Skip to content

Instantly share code, notes, and snippets.

@trejo08
Last active December 30, 2022 05:26
Show Gist options
  • Save trejo08/8b63905e24297482f1149861479aa068 to your computer and use it in GitHub Desktop.
Save trejo08/8b63905e24297482f1149861479aa068 to your computer and use it in GitHub Desktop.
Morse Code translator written in Ruby as solution of CodementorX Assessment.
class Morse
def posibilities(signals)
signals.include?('?') ? check_wildcard(signals) : morses["#{signals}"]
end
def check_wildcard(signals)
length = signals.split('').length
values = []
if length.eql?(1)
values = ["E", "T"]
else
indexes = []
chars = signals.split('')
chars.each.with_index do |char, index|
next if char.eql?('?')
indexes << index
end
morses.keys.each do |morse|
next unless morse.length.eql?(length)
valid = true
indexes.each do |index|
next if chars[index].eql?(morse.split('')[index])
valid = false
end
values << morses[morse] if valid
end
end
values
end
def morses
{
'.' => 'E',
'-' => 'T',
'..' => 'I',
'.-' => 'A',
'-.' => 'N',
'--' => 'M',
'...' => 'S',
'..-' => 'U',
'.-.' => 'R',
'.--' => 'W',
'-..' => 'D',
'-.-' => 'K',
'--.' => 'G',
'---' => 'O'
}
end
end
@5ran6
Copy link

5ran6 commented Nov 12, 2022

Hi 👋 . Do you have this solution in Python?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment