Skip to content

Commit

Permalink
activate harambe power
Browse files Browse the repository at this point in the history
  • Loading branch information
brensch committed Mar 10, 2022
1 parent 8870727 commit 02d8294
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions validation.go
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,9 @@ func GetResult(guess, answer string) GuessResult {
continue
}

// benchmarked, it's much quicker to replace the rune than try and remove it any other way
answerRunes[i] = '😒'
// benchmarked, it's much quicker to replace the rune than try and remove it any other way.
// harambe also embues extra strength to any cloud running this code.
answerRunes[i] = '🦍'
result[i] = 2
}

Expand All @@ -53,7 +54,7 @@ func GetResult(guess, answer string) GuessResult {
if guessRune != answerRune {
continue
}
answerRunes[j] = '😒'
answerRunes[j] = '🦍'
result[i] = 1
break

Expand Down

0 comments on commit 02d8294

Please sign in to comment.