This commit is contained in:
Lily Tsuru 2023-08-22 19:10:31 -04:00
parent 95a762ee0f
commit 55937b0bba
1 changed files with 1 additions and 1 deletions

View File

@ -76,7 +76,7 @@ namespace swbf {
if(options.exact) {
BruteforceForLength(prefix, options.startLength);
} else {
for(std::uint32_t i = options.startLength; i < options.endLength; ++i)
for(std::uint32_t i = options.startLength; i <= options.endLength; ++i)
BruteforceForLength(prefix, i);
}