♻️ Simplifies return condition #23

Merged
ada merged 1 commit from ada/simplifies-return into main 2024-02-18 01:15:17 +01:00

View file

@ -33,10 +33,7 @@ func GenerateSecret() string {
// CheckCharRedundant verify is a character is redundant in a string // CheckCharRedundant verify is a character is redundant in a string
func CheckCharRedundant(source string, char string) bool { // Verify if a char is redundant func CheckCharRedundant(source string, char string) bool { // Verify if a char is redundant
if strings.Count(source, char) > 1 { return strings.Count(source, char) > 1
return true
}
return false
} }
func parseIntBeforeSeparator(source *string, sep string) (int, error) { // return 0 & error if error, only accept positive number func parseIntBeforeSeparator(source *string, sep string) (int, error) { // return 0 & error if error, only accept positive number