...

/

Challenge 2: Language Processing with Transducer

Challenge 2: Language Processing with Transducer

Test your knowledge by writing code for a transducer.

Problem statement

Write a transducer that performs the following operations in the order specified below:

  • Convert all words in a list to their uppercase versions.
  • Filter out all words with four or fewer characters.
  • Separate all characters in each word with an
...