gleam
gleam copied to clipboard
Exercism exercises in Gleam.
I'm sure there's an "eleganter" way solve this, but ...
The exercise's instructions say: "If they player's level is below 10, their mana should be untouched." Since the test checked against `None` there were unintended solutions that did not account...
Running `gleam test` on the `expert-experiments` concept exercise yields the following warning: ```text $ gleam test Compiling argv Compiling gleam_stdlib Compiling gleam_community_colour Compiling gleam_community_ansi Compiling gap Compiling glexer Compiling glance...
Adds the [parallel letter frequency for 48in24](https://forum.exercism.org/t/48in24-exercise-03-12-parallel-letter-frequency/9927/).
The concept could be useful as a prerequisite for the parallel letter frequencies exercise
There is a valid solution to the `win` function in the Pacman Rules exercise which is as follows: ```gleam pub fn win( has_eaten_all_dots: Bool, power_pellet_active: Bool, touching_ghost: Bool, ) ->...
Just checking to see if anything breaks. 😄 Also see: https://github.com/exercism/gleam-test-runner/pull/53
For this task the naming of the last output variant type is confusing and will easily lead to type errors in the solution ```Gleam pub type Output { Unknown Digit(Int)...
[Leap will be featured on Exercism starting tomorrow](https://forum.exercism.org/t/48in24-exercise-01-16-leap/8964). The exercise is already ported, but I'd like to write approaches highlighting different ways to solve the exercise. [Here's an example from...
Updated the instructions to better fit the task given in the tests, since the task as written in the readme was not really fitting to the task actually given in...