EXERCISE: Convert between time and numbers

Some simple arithmetic to help you practice writing Clojure code.

Calculating Minutes and Seconds

The human number system is base 10 (i.e. 1,10,100), however, humans represent time in seconds (60), minutes (60), hours (24), etc.

When working with time we often convert between the two representations.

Take a rough guess at the minutes that have elapsed since you woke up today. For example, 2 hours 25 minutes.

How would you calculate the time elapsed in minutes?

()
Reveal answer...

Convert from Minutes to Hours and Minutes

If the time elapsed is 428 minutes, how long is that in hours and minutes.

First calculate how many hours there are in 428 minutes

(quot x y) will give you the whole number part of x divided by y.

Then calculate how many minutes are not part of a whole hour.

(rem x y) will give you the remainder of x divided by y.

()
Reveal answer...


Representing Time and Dates

Most programming languages have a way to specifically represent time and dates, typically based around a calendar. Sometimes these libraries can make it easier to work with time.

Clojure has a library called clojure.java-time to help you represent times and dates.

(ns practicalli.what-time-is-it
  (:require [java-time :as time]))
(defn -main []
  (println "The time according to Clojure java-time is:"
           (time/local-date-time)))

Or Clojure can also use time and date libraries from its host environment (Java, JavaScript, .Net)

results matching ""

    No results matching ""