sweet1cris

Untitled

Feb 10th, 2018
162
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.10 KB | None | 0 0
  1.  
  2. public int leftRotate(int n, int d) {
  3.     // write code here
  4.     return (n >>> (32 - d)) + (n << d);
  5. }
Advertisement
Add Comment
Please, Sign In to add comment