About 9,780 results
Open links in new tab
  1. Morse code translator - Code Golf Stack Exchange

    Jan 28, 2011 · Write the shortest program to transform the standard input into Morse code. Characters not in the table should be printed as they are.

  2. Translate Morse code based on tone duration

    Nov 16, 2017 · Goal Morse code is often represented as sound. Given a stream of bits that represent whether sound is on or off, translate the stream into letters and numbers and spaces. Specifics The …

  3. Morse Decode Golf - Code Golf Stack Exchange

    Aug 25, 2014 · Morse code symbols are stored by changing "." and "-" into binary digits 0 and 1, prepending a "1" (so that leading dots aren't gobbled up), converting the binary number into decimal, …

  4. Is this string a palindrome (in Morse Code)?

    Oct 20, 2018 · Try it online! Similar to this Jelly answer: we think of Morse code as binary, and write down a string " ETIANMSURWDKGOHVF L PJBXCYZQ" where the position of a character, in …

  5. Write a formatted Morse code cheatsheet

    May 23, 2017 · Spaces replacing the first three pieces, the Morse code with a - suffix, the second half of the remaining letters The new lines follow the same format as the existing line, just with an extra …

  6. Telegraphy Golf: Decode Baudot Code

    Sep 21, 2016 · Background In 1870 Émile Baudot invented Baudot Code, a fixed-length character encoding for telegraphy. He designed the code to be entered from a manual keyboard with just five …

  7. code golf - Nightmare Puzzlang translator - Code Golf Stack Exchange

    Sep 21, 2018 · Background Puzzlang is a derivative of Brainfuck, where the symbol X executes a BF command based on three characters on top of it, and anything else does nothing. The following is …

  8. the red-nosed reindeer - Code Golf Stack Exchange

    Dec 25, 2019 · Define the tradfn R, taking left argument D (dictionary word list) and right argument i (the input, i.e. the song in undelimited Morse code), and having local variables C (word choice array), M …

  9. Morse code to standard output - Code Golf Stack Exchange

    Jan 9, 2014 · 15 This question involves taking input in Morse code as . (period) and - (minus symbol), with spaces to separate the input. Your task is to convert the code to standard output.

  10. Write a hash function for Morse Code

    Feb 1, 2014 · From the specs "Your goal is to write a hash function, that accepts Morse Code characters and returns a hash code that you get to define." Standard hash codes, e.g. from md5 or sha1 can be …