Welcome to Wordie Clone DSA. Wordie Clone DSA (WCDSA) is a React JS web clone of the mobile app game Wordie. WCDSA was developed from scratch until achieving the core functionalities of the mobile app game. WCDSA is playable in desktop and mobile. You can play with Wordie Clone DSA at wordle-clone-dsa.netlify.app.
Wordie Clone DSA was puposefully designed to use Data Structures & Algorithms (DSA) to the greatest extend possible to produce efficient code. WCDSA utilizes matrices, a queue, and pointers to process individual user inputs in constant time (O(1)). These data structures also allow to more easiy implement the special features of specific-cell editing and adding placeholders (features that are usually missing in other web clones of Wordie).
To use WCDSA locally, in your terminal, run
git clone https://github.com/mmartinezluis/wordle-clone.git
Then cd into the project and install the npm dependencies:
npm install
Finally, start the app by running
npm start