uploaded at 2022. 12. 30. 오전 3:55:32

This commit is contained in:
rl544
2022-12-30 03:55:32 +09:00
parent acf68490f8
commit d455082288
+7
View File
@@ -0,0 +1,7 @@
// [문제 링크]: https://school.programmers.co.kr/learn/courses/30/lessons/120910
class Solution {
public int solution(int n, int t) {
return n << t;//bits 연산 좌항으로 옮김
}
}