I hereby claim:
- I am bslatner on github.
- I am bslatner (https://keybase.io/bslatner) on keybase.
- I have a public key ASBJtRi9vnVLeArX6WObR_5gY8C1ygAW_e-LyNhMG4O4JQo
To claim this, I am signing this object:
| // StartResult would be the type of the response. Must be marked with [<CLIMutable>] | |
| let response = | |
| restWithResponse<StartResult> ( | |
| POST >> toResource "stopwatch/{type}/{key}/start" >> atUrl config.Url | |
| >> withUrlSegment "type" stopwatchType | |
| >> withUrlSegment "key" key | |
| >> withFormValue "owner" owner | |
| >> withExpectedStatusOk | |
| ) |
I hereby claim:
To claim this, I am signing this object:
| #load "Helpers.fs" | |
| open Helpers | |
| let next n = | |
| match n with | |
| | Even64 -> n/2L | |
| | Odd64 -> 3L*n+1L | |
| let collatzLength start = |
| module Day7 | |
| open System | |
| open System.Collections.Generic | |
| type InputValue = | |
| | IntValue of uint16 | |
| | Wire of string | |
| type Gate = |