feat: add initial implementation of Go utilities and CI workflows

This commit is contained in:
2025-06-18 16:46:01 -04:00
commit c588ade142
12 changed files with 475 additions and 0 deletions

11
Maps/maps.go Executable file
View File

@@ -0,0 +1,11 @@
package Maps
//goland:noinspection GoUnusedExportedFunction // library function
func IsElementExist(s []string, str string) bool {
for _, v := range s {
if v == str {
return true
}
}
return false
}