Last active
December 3, 2024 08:31
-
-
Save TheMuellenator/4bfc62a9f5226e10246fbb08e19bdea3 to your computer and use it in GitHub Desktop.
iOS repl.it - Constants Challenge Solution
This file contains hidden or 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
//Write your code here. | |
// Solution | |
let secondsInAnHour = 3600 | |
// alternatively: | |
// let secondsInAnHour: Int = 3600 | |
// Note, constants can only be set once and cannot be assigned a new value. | |
// The below does not work, because it is a constant and thus cannot be changed. | |
// secondsInAnHour = 1337 | |
//Don't change the code below. | |
print(secondsInAnHour) |
LOL! Only here did I realize that I was wasting all this time adding minutes rather than seconds in the hour! 🤣🤦♂️
My solution:
let secondsInAnHour: Int = 60*60
//Don't change the code below.
print(secondsInAnHour)
func exercise() {
let secondsInAnHour = 60 * 60
print(secondsInAnHour)
}
This was a straight forward answer, I even looked for some tricks too
var hour = 1;
var min = 60
var sec = 60
let secondsInAnHour = hour * min * sec;
print(secondsInAnHour);
let secondsInAnHour = 3600
print(secondsInAnHour)
let secondsInAnHour = 60 * 60
print(secondsInAnHour)
func exercise() {
//Write your code here.
let secondsInAnHour: Int = 3600
//Don't change the code below.
print(secondsInAnHour)
}
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
func exercise() {
//Write your code here.
}