Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Kaira_hangPerson_hw_06-19 #8

Open
wants to merge 2 commits into
base: master
Choose a base branch
from

Conversation

kairarobot
Copy link

Kaira's homework.

The location is at: /HangPerson/main.m



// ** checks to see if the user's array matches the OG word's array
if ( levelOneMatch[0] == levelOne[0] && levelOneMatch[1] == levelOne[1] && levelOneMatch[2] == levelOne[2] && levelOneMatch[3] == levelOne[3] && levelOneMatch[4] == levelOne[4] && levelOneMatch[5] == levelOne[5] ){
Copy link
Contributor

Choose a reason for hiding this comment

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

The one thing I would suggest is that you make this more general. Use a for loop and compare within the loop...

int won = 1;
for (int i = 0; i < strlen(levelOne); i++) {
    if (levelOne[i] != levelOneMath[i]) {
        won = 0;
        break;
    } 
}

if (won) {
    printf("YOU ARE THE BEST EVER!!");
}

@mikekavouras
Copy link
Contributor

great work!

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