Fl4m3Ph03n1x

Fl4m3Ph03n1x

Challenge

I have recently changed to CodeWars to make practice my Elixir skills. To complete an exercise I need to convert seconds to compound duration. This looks complex, but in reality is something most developers did at one time or another:

Write a function or program which:

  • takes a positive integer representing a duration in seconds as input (e.g., 100 ), and
  • returns a string which shows the same duration decomposed into hours, minutes, and seconds like: “01|20|34” ( 1 hour, 20 minutes, 34 seconds ).

Each string needs to have 2 digits.

Question

I noticed that some languages like Julia already have a function that does this. I wonder if Elixir / Erlang, with so many years going on, also has one.

Does any one know of an native function that helps me accomplish this without having to reinvent the wheel all over again?

Showing Posts 1 to 4

michallepicki

michallepicki

I may be wrong but I thought the point of these challenges was to implement such functions. But answering your question, I would create a zero NaiveDateTime and add seconds using the add function from this module.

Edit: In fact you can use Time and Time.add

Fl4m3Ph03n1x

Fl4m3Ph03n1x OP

The idea of exercise is not to make a compound date. That is merely a necessary step to make the exercise, like knowing how to add to numbers in order to calculate integrals in math.

So I was hoping I could skip this with a native function and actually focus on the core of the exercise itself.

BrooklinJazz

BrooklinJazz

I haven’t found a native implementation of this. But I had to do the same for my website just now.

I think you can accomplish the behavior by using rem and div.

hours = div seconds, 3600
minutes = div seconds, 60
seconds = rem seconds, 60

I haven’t comprehensively tested this to make sure there are no edge cases, but I think it should work :slight_smile:

fchabouis

fchabouis

If you take 3661 seconds, that’s 1 hour, 1 minute, 1 second.

But div seconds, 60 is equal to 61.

I would write :

  def seconds_to_hours_minutes_seconds(seconds) do
    { div(seconds, 3600), rem(seconds, 3600) |> div(60),  rem(seconds, 3600) |> rem(60)}
  end

Also, I don’t think you can use NaiveDateTime easily, because you will soon get days, months and years. And if you use Time, it won’t work for durations above 24h, as you will get back to 0.

— All posts loaded —

Where Next? Top

Trending in Questions Top

RSP87
I’m working on a project that simulates the bumbl example in the programming phoenix book. It acts almost like an email client. We have a...
New
nseaSeb
Hello, I know there is an approach for handling lists that allows for optimized traversal, but I can’t recall the specific method (somet...
New
RemyXRenard
I’m seeing that a list inside a Kino.DataTable will be interpreted as a charlist, even if the Kino.configure() is set to charlists: :as_l...
New
brecabral
Documentation While reading the Scoped Routes section, I noticed that the documentation currently refers to a problem without explainin...
New
velrest
So my question is quite simple and i have found no conclusive answer on forum, google or AI. Should we use :erlang.float for Integer to ...
New
samoloth
Hi, I’ve just set up an application with ash_authentication. There is only magic link strategy for now, so there is no confirmation add o...
New
FlyingNoodle
If a change or preparation module uses Ash.Changeset.get_argument/2 or Ash.Query.get_argument/2 (or any of the other get_argument functio...
New

Other Trending Topics Top

mudasobwa
I am happy to introduce the very α version of the new programming language compiled to BEAM. Welcome Cure. It has literally three kille...
New
marciok
Hi there! We created Gust: A task orchestrator inspired by Airflow. For those who have never heard about Aiflow, it’s a Python-based wor...
New
jimsynz
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Dmk
Xamal is a deployment tool for Elixir apps that deploys native releases to bare metal servers over SSH. It’s a port of GitHub - basecamp/...
New
netoum
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
webofbits
With AI doing more of the implementation work, I’ve been wondering how much coding I should deliberately keep doing myself. My main conc...
#ai
New

We're in Beta

About us Mission Statement

Options

Thread Display Mode




Thread Preview

Skip Thread Previews