This commit is contained in:
Jonas Rabenstein 2025-01-25 00:23:42 +01:00
commit 2cd84df2ba
5 changed files with 36 additions and 36 deletions

View file

@ -11,7 +11,7 @@ func checkErr(err error) {
}
}
func in (a byte, arr []byte) bool {
func in(a byte, arr []byte) bool {
for _, x := range arr {
if x == a {
return true