Created
April 4, 2020 07:59
-
-
Save wizard1066/d0379b201a6de91af1da14116e3797ca to your computer and use it in GitHub Desktop.
abgwtp15
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
func boardFull(textColors:[Color],figures:Int) -> Bool { | |
for loop in 0 ..< figures { | |
if textColors[loop] == Color.clear { | |
return false | |
} | |
} | |
return true | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment