1
1
mirror of https://github.com/theoludwig/programming-challenges.git synced 2024-07-18 02:20:12 +02:00
programming-challenges/challenges/is-prime-number/input-output.json

19 lines
192 B
JSON
Raw Normal View History

2020-07-05 22:20:45 +02:00
[
{
"input": [4],
"output": false
},
{
"input": [19],
"output": true
},
{
"input": [97],
"output": true
},
{
"input": [54],
"output": false
}
]