14# Moving House | Scratch Coding Practices & challenging Tasks

Sdílet
Vložit
  • čas přidán 5. 09. 2024
  • I'd like to calculate how long on average I've lived in a single house.
    Given a person's age and the number of times they've moved house as moves, return the average number of years that they've spent living in the same house.
    Examples
    yearsInOneHouse(30, 1) ➞ 15
    yearsInOneHouse(15, 2) ➞ 5
    yearsInOneHouse(80, 0) ➞ 80
    Notes
    You can assume that the tests include people who've always lived in a house.
    Round to the nearest year.

Komentáře •