Skip to content

implement is_isogram 🥇 👍 💯 #7

Open
philcoder01 wants to merge 1 commit intoriederm:masterfrom
philcoder01:master
Open

implement is_isogram 🥇 👍 💯 #7
philcoder01 wants to merge 1 commit intoriederm:masterfrom
philcoder01:master

Conversation

@philcoder01
Copy link

try every character and count the number of occurences

try every character and count the number of occurences
@@ -1,36 +1,20 @@

Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

i think this found its way into the wrong file?
can you move this to iscogram.c

counter++;
}
}

Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

return is missing? probably check

if counter > 1 {
   return false;
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants

Comments