• Stars
    star
    1
  • Language
    Scala
  • License
    Apache License 2.0
  • Created over 6 years ago
  • Updated over 5 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Essential Scala case study: selecting paths from a route finder service

Route Finding Case Study

A Scala / functional programming case study based on this kata.

Overview

Imagine some route finding API that provides possible paths from a source to a destination.

Given a list of paths, select the best one based on distance and whether it includes intermediate stops (points along the path).

Expect the API to produce only valid path lists according to the following specification:

  • A path list has:

    • a list of paths
  • A path has:

    • a list of segments
  • A segment has:

    • a source point
    • a destination point
  • A point has:

    • an x coordinate
    • a y coordinate

Suggested Steps

Try solving the kata in the following steps:

  1. Write code to handle distance:
    1. Compute the distance of a segment
    2. Compute the distance of a path
    3. Find the shortest path in a list of paths
  2. Write code to handle stops:
    1. Calculate the points along a path
    2. Filter paths keeping only those which include a point
    3. Filter paths keeping only those which include a given list of points
  3. Write code to find the best path in a list of paths

Bonus problem (harder):

  • Given a list of segments, compute all possible paths between 2 points.

Tips

Use Placeholders

Start every method by writing its signature and ??? as its body:

def myMethod(arg1: Arg1Type, arg2: Arg2Type): ResultType =
  ???

Remember:

  • You can use ??? anywhere in your code to stub out something you don't yet know how to write.

  • If you're having trouble with a big line of code:

    • split it into smaller lines;
    • assign each intermediate result to a variable;
    • put a type annotation on each variable.

TDD

You might consider writing the code using TDD:

  • Start by writing a unit test
  • Allow the test to fail (to compile or to pass)
  • Write just enough application code to make the unit test pass
  • Write another test (and so on)

I have preconfigured a unit testing library called ScalaTest to get you started.

SBT Cheat Sheet

> compile                    # compile your code

> test                       # run all tests

> testOnly <CLASSNAME>       # run all tests in a single test suite

> testOnly paths.SegmentSpec # run all tests in SegmentSpec

> run                        # run your code (needs a main class/method)

More Repositories

1

bridges

Generate bindings for Scala types in other programming languages.
Scala
56
star
2

unindent

Indent-adjusted multiline string literals for Scala.
Shell
48
star
3

checklist

Validation library for Scala.
Scala
47
star
4

bulletin

Automatically perform shallow merges on case classes. Treat your data with the latest updates!
Scala
42
star
5

meowsynth

The mighty meowing synthesizer!
Scala
30
star
6

validation

Scala data validation library
Scala
29
star
7

typelevel-todomvc

Scala
25
star
8

atlas

A tiny embedded scripting language implemented in Scala.
Scala
24
star
9

shapeless-guide

The Type Astronaut's Guide to Shapeless
19
star
10

functional-data-validation

Slides and code samples for a talk on thinking functionally (and validating web forms).
Scala
18
star
11

99-ways-to-di

Slides from my lightning talk on Dependency Injection at Scala Central #5.
14
star
12

css-selector

Lift-style CSS selector transforms based on Scalate's Scuery
Scala
10
star
13

tipi

Tiny templating language written in Scala.
Scala
10
star
14

macros-vs-shapeless

Slides and code samples on meta-programming techniques in Scala.
Scala
10
star
15

spandoc

Write Pandoc filters in Scala.
Scala
7
star
16

scalalol-2011-talk

Slides and code samples for talk at Scala Lift-Off London 2011.
Scala
6
star
17

scala-opengl

Simple OpenGL examples using Scala, LWJGL, and sbt-lwjgl
Scala
6
star
18

shapeless-guide-slides

Slides for my Scala World 2016 workshop on shapeless.
6
star
19

smartypants

Simple smart constructor generation for Scala.
Scala
4
star
20

scalax2gether-2017

Workshop and hack proposals for the Scala Exchange Hack Day (ScalaX2gether 2017)
4
star
21

shapeless-sandbox

Scala
3
star
22

scalax-2014

Slides and code samples for my Scala Exchange 2014 talk on Functional Data Validation.
3
star
23

typelevel-philly-2016

3
star
24

sbt-less

Superseded by sbt-less in https://github.com/untyped/sbt-plugins.
Scala
3
star
25

akka-streams-case-study

Scala
2
star
26

poker-case-study

Poker hand comparison in Scala. A fairly advanced "Essential Scala" case study.
Scala
2
star
27

interpreter-case-study

Scala case study about building an interpreter and a simple DSL.
Scala
2
star
28

cats-error-case-study

Scala
2
star
29

bus-driver-case-study

Gossiping Bus Drivers Kata
Scala
2
star
30

scala-rpg-test

A sandbox project for playing with Scala and the graphics from Browserquest.
Scala
2
star
31

concurrency-case-study

Scala
2
star
32

versionit

Grab your Git commit hash as a Scala String.
Scala
2
star
33

advanced-scala-scalax15

Code written at Advanced Scala at Scala Exchange 2015
Scala
1
star
34

spectaskular-iphone

iPhone todo list app
Objective-C
1
star
35

brighton-java-sample-app

Scala talk for Brighton Java
CSS
1
star
36

session-cell

Cookie-based in-memory session storage for the Racket HTTP Server.
Scheme
1
star
37

kitties-case-study

Meow!
Scala
1
star
38

gilded-rose-case-study

Code refactoring kata
Scala
1
star
39

conway-case-study

Scala
1
star
40

mars-rover-case-study

Scala
1
star
41

asyncjs-creative-fp

Creative Functional Programming talk for AsyncJS.
1
star
42

parallel-case-study

Scala
1
star
43

bank-ocr-case-study

Scala
1
star
44

play-json-case-study

Scala
1
star
45

calc-case-study

Scala
1
star
46

bowling-case-study

Scala
1
star
47

advanced-scala

The old source code repository for Scala with Cats
1
star
48

typeclub

Scala
1
star
49

tagless-case-study

Scala
1
star
50

composejs

Javascript port of Compose (https://github.com/underscoreio/compose).
JavaScript
1
star
51

doodlejs

Javascript port of Doodle
JavaScript
1
star
52

fpinscala

My attempts at the exercises in Functional Programming in Scala.
Scala
1
star
53

shapeless-guide-code

The Type Astronaut's Guide to Shapeless (Example Code)
1
star
54

scaladays-berlin-2016

1
star
55

property-based-testing-workshop

Scala
1
star
56

advanced-scala-exercises

Scala
1
star
57

away-with-the-types

Scala
1
star
58

cats-effect-sandbox

An empty SBT project with dependencies on Cats and Cats Effect.
Scala
1
star