Skip to content

Commit 162fa20

Browse files
refactor 479
1 parent c6a0f44 commit 162fa20

File tree

1 file changed

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

1 file changed

+0
-15
lines changed

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

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

3-
/**
4-
* 479. Largest Palindrome Product
5-
*
6-
* Find the largest palindrome made from the product of two n-digit numbers.
7-
Since the result could be very large, you should return the largest palindrome mod 1337.
8-
9-
Example:
10-
Input: 2
11-
Output: 987
12-
13-
Explanation: 99 x 91 = 9009, 9009 % 1337 = 987
14-
15-
Note:
16-
The range of n is [1,8].
17-
*/
183
public class _479 {
194
public static class Solution1 {
205
/**

0 commit comments

Comments
 (0)