Sha256: f4e758965d70c5f0f5743f6c88ce78a192b19e0ed137709d4b2f2d6fb297328f

Contents?: true

Size: 732 Bytes

Versions: 382

Compression:

Stored size: 732 Bytes

Contents

## Hints

To complete this exercise you need to implement the function `slices`,
that takes a *text* and returns the subsequences of digits with a
specified size:

If it is your first time solving this exercise, it is recommended that you
stick to the provided signature:

```haskell
slices :: Int -> String -> [[Int]]
```

Later, it may be a good idea to revisit this problem and play with other data
types and libraries:

- `ByteString`, from package *bytestring*.
- `Sequence`, from package *containers*.
- `Text`, from package *text*.
- `Vector`, from package *vector*.

The test suite was intentionally designed to accept almost any type signature
that makes sense, so you are encouraged to find the one you think is the best.

Version data entries

382 entries across 382 versions & 1 rubygems

Version Path
trackler-2.0.0.5 tracks/haskell/exercises/series/HINTS.md
trackler-2.0.0.4 tracks/haskell/exercises/series/HINTS.md