We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
defrotateLeft(num_bits:int,arr:list[int])->list[int]:"""Shift bits in the list/array to the left by num_bits."""left_shift_bits=num_bits%len(arr)return[*arr[left_shift_bits:],*arr[:left_shift_bits]]
Cookie support is required to access HackerRank
Seems like cookies are disabled on this browser, please enable them to open this website
Left Rotation
You are viewing a single comment's thread. Return to all comments →
Quick in Python!