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?
Trending in Questions
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
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
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
Documentation
While reading the Scoped Routes section, I noticed that the documentation currently refers to a problem without explainin...
New
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
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
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
I am happy to introduce the very α version of the new programming language compiled to BEAM.
Welcome Cure.
It has literally three kille...
New
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
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
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
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
With AI doing more of the implementation work, I’ve been wondering how much coding I should deliberately keep doing myself.
My main conc...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #library
- #deployment
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #podcasts
- #javascript
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixirconf-us
- #ai
- #blog-post
- #elixir-ls
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #hex
- #security
- #metaprogramming










Showing Posts 1 to 4- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
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
addfunction from this module.Edit: In fact you can use Time and Time.add
Fl4m3Ph03n1x
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
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
fchabouis
If you take 3661 seconds, that’s 1 hour, 1 minute, 1 second.
But
div seconds, 60is equal to 61.I would write :
Also, I don’t think you can use
NaiveDateTimeeasily, because you will soon get days, months and years. And if you useTime, it won’t work for durations above 24h, as you will get back to 0.