Please describe the bug below and include any steps to reproduce the bug or screenshots if possible.
Hey, seems like one of the cases is not right.
Last executed test case
Input:
nums=[1,2,3,4,5,6,7]
k=3
Your Output:
[4,5,6,7,1,2,3]
Expected output:
[5,6,7,1,2,3,4]
Bug Report for https://neetcode.io/problems/rotate-array
Please describe the bug below and include any steps to reproduce the bug or screenshots if possible.
Hey, seems like one of the cases is not right.