exercises-cats icon indicating copy to clipboard operation
exercises-cats copied to clipboard

Scala Exercises' lessons for the Cats library

Results 13 exercises-cats issues
Sort by recently updated
recently updated
newest added

Hi, On [Cats | Eval](https://www.scala-exercises.org/cats/Eval), we can not do the exercises, the fields we have to fill are already filed with text (apparently scala types) instead of having html inputs...

Per typelevel/cats/1444

In the first cats exercice on [Semigroup](https://www.scala-exercises.org/cats/semigroup), there are four slots to fill. However if a single slot is wrong, then all answers are underlined in red. It's difficult for...

I'm opening this issue just to give some feedback on these two exercises. - So in Monad exercise `OptionT` is introduced. You can deduce some of its meaning from the...

On the exercise of Foldable `traverse`, it accepts a wrong answer as proper: ```scala import cats.implicits._ def parseInt(s: String): Option[Int] = Either.catchOnly[NumberFormatException](s.toInt).toOption Foldable[List].traverse_(List("1", "2", "3"))(parseInt) should be(Some(42)) ``` Since traverse_...

Hello people :). I am trying to run the following code on a scala worksheet `scala 2.12.4`, `sbt 1.0.3`, `cats 1.0.0-MF`: ```scala import cats.Semigroup import cats.data.{NonEmptyList, OneAnd, Validated, ValidatedNel} import...

I was going to see if I could debug why the Applicative composition exercise doesn't display correctly and in trying to build exercises-cats, I ran into the NoClassDefFoundError above. I...

https://www.scala-exercises.org/cats/traverse Evaluation failed : Compilation Error ; ERROR -> object Xor is not a member of package cats.data at [181, 188, 188]