Sha256: 8e829fc64828c73dda529b2ffa56176710e1a62d83d6e320ef8ebc4ffe1d18a1
Contents?: true
Size: 488 Bytes
Versions: 82
Compression:
Stored size: 488 Bytes
Contents
package prime // Source: exercism/problem-specifications // Commit: 4a3ba76 nth-prime: Apply new "input" policy // Problem Specifications Version: 2.1.0 var tests = []struct { description string n int p int ok bool }{ { "first prime", 1, 2, true, }, { "second prime", 2, 3, true, }, { "sixth prime", 6, 13, true, }, { "big prime", 10001, 104743, true, }, { "there is no zeroth prime", 0, 0, false, }, }
Version data entries
82 entries across 82 versions & 1 rubygems