Skip to content

Instantly share code, notes, and snippets.

@kiramishima
Created March 7, 2020 19:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kiramishima/f9890c01ac0ef20852c1a79a9298f254 to your computer and use it in GitHub Desktop.
Save kiramishima/f9890c01ac0ef20852c1a79a9298f254 to your computer and use it in GitHub Desktop.
HackerRank F# Base para los ejercicios
[<EntryPoint>]
let main argv =
let n = int <| Console.ReadLine()
let ar = Console.ReadLine().Split(' ') |> Array.map (fun x -> x |> Convert.ToInt32)
// you code
0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment