Deep Dive into a MS Power Apps Wordle Game Engine
This article explores a Microsoft Power Apps canvas solution that implements a Wordle computation engine. In this application, users input a target word (the “answer”) and a guess. The engine then processes the guess and returns a string representing the match status, using the following colour-coded indicators: G (Green) : Indicates that the character in the guess matches the character in the answer at the same position. Y (Yellow) : Indicates that the character in the guess is present in the answer, but at a different position. B (Black) : Indicates that the character in the guess is not present in the answer. Enabling User-Defined Functions This engine utilizes an experimental Power Apps feature called User-defined functions , which must be enabled as follows: Click the Settings (cog) icon. Select the Updates tab. Scroll down to User-defined functions and enable it. Download the Source Package The source package for this solution is available for dow...