Make Sure We Don't Generate Looping Links #16
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
After a few links deep into the site, a link will be generated that loops back a few links, and since it's a deterministic randomly generated page, it will always get stuck somewhere in the site.
We don't want that.
Found the error lol. It's because of the relatively small wordlist I'm using, and the way the code predict new words. So if there is no occurrence of the input word, that input word would just be spat back out.
Recommend: Use a list of start words that appear at least once in your wordlist. The more, the better.