Last active
February 27, 2022 05:05
-
-
Save jsit/b7e51ea6d155160fdd8da7f302a9d5f0 to your computer and use it in GitHub Desktop.
Wordle Streak Transfer
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"statistics": { | |
"currentStreak": 32, | |
"maxStreak": 32, | |
"guesses": { | |
"1": 0, | |
"2": 1, | |
"3": 5, | |
"4": 20, | |
"5": 11, | |
"6": 6, | |
"fail": 1 | |
}, | |
"winPercentage": 98, | |
"gamesPlayed": 44, | |
"gamesWon": 43, | |
"averageGuesses": 4 | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://www.nytimes.com/games/wordle/index.html?data={%22statistics%22:{%22currentStreak%22:32,%22maxStreak%22:32,%22guesses%22:{%221%22:0,%222%22:1,%223%22:5,%224%22:20,%225%22:11,%226%22:6,%22fail%22:1},%22winPercentage%22:98,%22gamesPlayed%22:44,%22gamesWon%22:43,%22averageGuesses%22:4}} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment