Skip to content

Commit 4a1631a

Browse files
refactor 372
1 parent b2db15a commit 4a1631a

File tree

1 file changed

+0
-18
lines changed
  • src/main/java/com/fishercoder/solutions

1 file changed

+0
-18
lines changed

src/main/java/com/fishercoder/solutions/_372.java

-18
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,5 @@
11
package com.fishercoder.solutions;
22

3-
/**
4-
* 372. Super Pow
5-
*
6-
* Your task is to calculate ab mod 1337 where a is a positive integer and b is an extremely large positive integer given in the form of an array.
7-
8-
Example1:
9-
10-
a = 2
11-
b = [3]
12-
13-
Result: 8
14-
Example2:
15-
16-
a = 2
17-
b = [1,0]
18-
19-
Result: 1024
20-
*/
213
public class _372 {
224
public static class Solution1 {
235
public int superPow(int a, int[] b) {

0 commit comments

Comments
 (0)