|
1 | 1 | [
|
2 |
| - {"input": [1, 2, 3, 4, 5], "expected": [2, 3, 4, 5, 1]}, |
3 |
| - {"input": [2, 3, 4, 5, 1], "expected": [3, 4, 5, 1, 2]}, |
4 |
| - {"input": [3, 4, 5, 1, 2], "expected": [4, 5, 1, 2, 3]}, |
5 |
| - {"input": [4, 5, 1, 2, 3], "expected": [5, 1, 2, 3, 4]}, |
6 |
| - {"input": [5, 1, 2, 3, 4], "expected": [1, 2, 3, 4, 5]} |
| 2 | + {"title": "Own 0", "input": [1, 2, 3, 4, 5], "d_rotations": 1, "expected": [2, 3, 4, 5, 1]}, |
| 3 | + {"title": "Own 1", "input": [2, 3, 4, 5, 1], "d_rotations": 1, "expected": [3, 4, 5, 1, 2]}, |
| 4 | + {"title": "Own 2", "input": [3, 4, 5, 1, 2], "d_rotations": 1, "expected": [4, 5, 1, 2, 3]}, |
| 5 | + {"title": "Own 3", "input": [4, 5, 1, 2, 3], "d_rotations": 1, "expected": [5, 1, 2, 3, 4]}, |
| 6 | + {"title": "Own 4", "input": [5, 1, 2, 3, 4], "d_rotations": 1, "expected": [1, 2, 3, 4, 5]}, |
| 7 | + {"title": "Sample Test case 0", "input": [1, 2, 3, 4, 5], "d_rotations": 4, "expected": [5, 1, 2, 3, 4]}, |
| 8 | + {"title": "Sample Test case 1", "input": [41, 73, 89, 7, 10, 1, 59, 58, 84, 77, 77, 97, 58, 1, 86, 58, 26, 10, 86, 51], "d_rotations": 10, "expected": [77, 97, 58, 1, 86, 58, 26, 10, 86, 51, 41, 73, 89, 7, 10, 1, 59, 58, 84, 77]}, |
| 9 | + {"title": "Sample Test case 2", "input": [33, 47, 70, 37, 8, 53, 13, 93, 71, 72, 51, 100, 60, 87, 97], "d_rotations": 13, "expected": [87, 97, 33, 47, 70, 37, 8, 53, 13, 93, 71, 72, 51, 100, 60]} |
7 | 10 | ]
|
0 commit comments