Update dependencies

This commit is contained in:
2024-08-14 12:27:59 +03:00
parent 1eff11b558
commit 88e9502e5c
3 changed files with 14 additions and 2 deletions

View File

@ -5,6 +5,6 @@ func AsciiLowercase() (dict []int) {
for i := 97; i <= 122; i++ {
dict = append(dict, i)
}
return
}