Advent of Code is back! Unwrap daily challenges to sharpen your Alteryx skills and earn badges along the way! Learn more now.
Community is experiencing an influx of spam. As we work toward a solution, please use the 'Notify Moderator' option on the ellipsis menu to flag inappropriate posts.
The solution to last week's challenge can be found HERE.
This week, let's take a break from all of those business uses cases and have some fun! In this challenge, create a field that indicates whether two values in each row are anagrams for each other. An anagram is a word formed by re-arranging the letters of another word. In our case, all anagrams are one word and are not split to multiple. No letter can be used more than once, and all letters must be used.
In my response I also added a TEST to determine if my results are correct. It turns out that I learned something new here that might be useful to others. It concerns Yes and No. This might be obvious to everyone, but I am a binary in nature and like boolean variables. Your results were Yes and No, so I had to reformat my boolean (True/False) results. After writing the workflow, I found that if you SUMMARIZE data and look for the Minimum value of a field, that No is the minimum of {Yes, No}.