About 24,700 results
Open links in new tab
  1. python - Decode the Morse Code - Code Review Stack Exchange

    Sep 2, 2018 · The Morse code is case-insensitive, traditionally capital letters are used. When the message is written in Morse code, a single space is used to separate the character codes and …

  2. Python Morse Code Translator - Code Review Stack Exchange

    Aug 18, 2020 · except KeyError: raise ValueError(f'Cannot decode code "{sequence}" at {index}.') return message Correctness Your Encrypt function currently always returns a trailing space. …

  3. Decode ambiguous Morse code - Code Review Stack Exchange

    Sep 24, 2019 · Given a morse encoded sentence with no spaces or separation between letters or words and a list of words contained in the message, decode it.

  4. Morse code translator in Java - Code Review Stack Exchange

    May 1, 2017 · A Morse code translator is a part of this app. I created encode and decode methods to translate in both sides Morse code and I moved the HashMap to the properties file.

  5. Morse code encoder/decoder with playback ability

    Aug 18, 2020 · recently I wanted to create a morse encoder/decoder with playback ability, the program needs java version >= 11 to run. the program requires a couple of jars : …

  6. Simple Morse Code Converter (Python)

    Apr 16, 2021 · I created a simple text to morse code converter in python, and was wondering if there was an easier/shorter way to do this. Is there a way to generate the dictionary without …

  7. Morse code translator in C# - Code Review Stack Exchange

    Mar 10, 2016 · I'm writing a Morse code translator for homework in C#. It takes an input from the user and returns the Morse code version of their input. I understand that this code may look …

  8. java - Converting Morse Code - Code Review Stack Exchange

    Challenge Write a program which reads a file containing Morse Code and outputs the conversion. Specifications The first argument is a path to a file. The file contains multiple lines. Each lin...

  9. Morse Code Converter in C - Code Review Stack Exchange

    Oct 2, 2019 · I'm learning C so I thought to apply it to miniproject on reddit. The smorse function takes in a string and spits out some morse code. It works if you supply the function with only …

  10. Morse code encoder decoder - Code Review Stack Exchange

    Nov 20, 2019 · If the script also accepted --encode and --decode parameters (possibly with --encode as the default) it could easily be used to script a conversion of any text.