Skip to content

Instantly share code, notes, and snippets.

@TheMuellenator
Last active April 23, 2024 16:37
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save TheMuellenator/4bfc62a9f5226e10246fbb08e19bdea3 to your computer and use it in GitHub Desktop.
Save TheMuellenator/4bfc62a9f5226e10246fbb08e19bdea3 to your computer and use it in GitHub Desktop.
iOS repl.it - Constants Challenge Solution
//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)
@alvarezac1
Copy link

hey @TheMuellenator was this a trick question? Is it as simple of let secondsInAnHour = 3600?

I thought we had to select one of the seconds in the hour. Just double checking!

@dimlaitman
Copy link

hey @TheMuellenator was this a trick question? Is it as simple of let secondsInAnHour = 3600?

I thought we had to select one of the seconds in the hour. Just double checking!

Yes, very easy! Didn't expect so solution...

@Ritvik2021
Copy link

WTH is the solution, it makes no sense...

"This does not work, because it is a constant and thus cannot be changed"??????

weren't we meant to declare it as a constant?

@artyom-ivanov
Copy link

Solution with type-checking

let secondsInAnHour: Int = 3600
print(secondsInAnHour)

@jihredoy
Copy link

jihredoy commented Apr 15, 2020

hahaha Github trying to make my code wrong. that's why screenshot:

Screen Shot 2020-04-15 at 12 08 03 PM

@JenniferQuesada
Copy link

I thought it had to be something a little bit more complicated, like with some sort of math equation LOL

@hailinhpro
Copy link

hailinhpro commented Jun 5, 2020

There are many ways to complete this challenge. I used this code below and passed:

let sencondInAnHour = Int(3600)

@krrish-cmd
Copy link

hahaha Github trying to make my code wrong. that's why screenshot:

Screen Shot 2020-04-15 at 12 08 03 PM

hahaha Github trying to make my code wrong. that's why screenshot:

Screen Shot 2020-04-15 at 12 08 03 PM

lol

@krrish-cmd
Copy link

please mullenator.can u please explain the question. i am not getting what is the question

@RakhimaN
Copy link

Hi! What if I write var instead of let?

@bhaveshtandel17
Copy link

Hi! What if I write var instead of let?

It will work, But no mean to use var keywords for constants (as it was immutable value).

  • Use var for variables
  • Use let for constants

@NastasiaIOSdev
Copy link

func exercise() {
//Write your code here.

let secondsInAnHour: Int = 3600

//Don't change the code below.
print(secondsInAnHour)

}

@rgsgroup2005
Copy link

LOL! Only here did I realize that I was wasting all this time adding minutes rather than seconds in the hour! 🤣🤦‍♂️

@brawler89
Copy link

My solution:

let secondsInAnHour: Int = 60*60

//Don't change the code below.
print(secondsInAnHour)

@Magdalenaspace
Copy link

func exercise() {

let secondsInAnHour = 60 * 60

print(secondsInAnHour)

}

@Turevha
Copy link

Turevha commented Oct 5, 2022

This was a straight forward answer, I even looked for some tricks too

@josileudo
Copy link

var hour = 1;
var min = 60
var sec = 60

let secondsInAnHour = hour * min * sec;

print(secondsInAnHour);

@Denaag
Copy link

Denaag commented Jan 28, 2023

let secondsInAnHour = 3600

print(secondsInAnHour)

@eltonbrayner
Copy link

let secondsInAnHour = 60 * 60

print(secondsInAnHour)

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