Sha256: 13f094c9defcc8f85b04c507d579f6d8e2dd0694bdce7beae1c8344741786909
Contents?: true
Size: 641 Bytes
Versions: 41
Compression:
Stored size: 641 Bytes
Contents
package secret // Source: exercism/x-common // Commit: 69c8700 secret-handshake: remove tests for numbers > 31 (#794) // x-common version: 1.1.0 type secretHandshakeTest struct { code uint h []string } var tests = []secretHandshakeTest{ {1, []string{"wink"}}, {2, []string{"double blink"}}, {4, []string{"close your eyes"}}, {8, []string{"jump"}}, {3, []string{"wink", "double blink"}}, {19, []string{"double blink", "wink"}}, {24, []string{"jump"}}, {16, []string{}}, {15, []string{"wink", "double blink", "close your eyes", "jump"}}, {31, []string{"jump", "close your eyes", "double blink", "wink"}}, {0, []string{}}, }
Version data entries
41 entries across 41 versions & 1 rubygems