Skip to content

Commit 5d0a07e

Browse files
edit 506
1 parent ea37bb2 commit 5d0a07e

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ Your ideas/fixes/algorithms are more than welcome!
110110
|513|[Find Bottom Left Tree Value](https://leetcode.com/problems/find-bottom-left-tree-value/)|[Solution](../master/src/main/java/com/fishercoder/solutions/_513.java) | O(n) |O(k) | Medium| BFS
111111
|508|[Most Frequent Subtree Sum](https://leetcode.com/problems/most-frequent-subtree-sum/)|[Solution](../master/src/main/java/com/fishercoder/solutions/MostFrequentSubtreeSum.java) | O(n) |O(n) | Medium| DFS, Tree
112112
|507|[Perfect Number](https://leetcode.com/problems/perfect-number/)|[Solution](../master/src/main/java/com/fishercoder/solutions/PerfectNumber.java) | O(sqrt(n)) |O(1) | Easy| Math
113-
|506|[Relative Ranks](https://leetcode.com/problems/relative-ranks/)|[Solution](../master/src/main/java/com/fishercoder/solutions/RelativeRanks.java) | O(nlogn) |O(n) | Easy|
113+
|506|[Relative Ranks](https://leetcode.com/problems/relative-ranks/)|[Solution](../master/src/main/java/com/fishercoder/solutions/_506.java) | O(nlogn) |O(n) | Easy|
114114
|505|[The Maze II](https://leetcode.com/problems/the-maze-ii/)|[Solution](../master/src/main/java/com/fishercoder/solutions/_505.java) | O(m*n) |O(m*n) | Medium| BFS
115115
|504|[Base 7](https://leetcode.com/problems/base-7/)|[Solution](../master/src/main/java/com/fishercoder/solutions/_504.java) | O(1) |O(1) | Easy|
116116
|503|[Next Greater Element II](https://leetcode.com/problems/next-greater-element-ii/)|[Solution](../master/src/main/java/com/fishercoder/solutions/NextGreaterElementII.java) | O(n) |O(n) | Medium| Stack

src/main/java/com/fishercoder/solutions/RelativeRanks.java renamed to src/main/java/com/fishercoder/solutions/_506.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
N is a positive integer and won't exceed 10,000.
1818
All the scores of athletes are guaranteed to be unique.
1919
*/
20-
public class RelativeRanks {
20+
public class _506 {
2121

2222
public String[] findRelativeRanks(int[] nums) {
2323
int[] tmp = new int[nums.length];

src/test/java/com/fishercoder/RelativeRanksTest.java renamed to src/test/java/com/fishercoder/_506Test.java

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package com.fishercoder;
22

3-
import com.fishercoder.solutions.RelativeRanks;
3+
import com.fishercoder.solutions._506;
44
import org.junit.Before;
55
import org.junit.BeforeClass;
66
import org.junit.Test;
@@ -10,15 +10,15 @@
1010
/**
1111
* Created by fishercoder on 1/15/17.
1212
*/
13-
public class RelativeRanksTest {
14-
private static RelativeRanks test;
13+
public class _506Test {
14+
private static _506 test;
1515
private static String[] expected;
1616
private static String[] actual;
1717
private static int[] nums;
1818

1919
@BeforeClass
2020
public static void setup(){
21-
test = new RelativeRanks();
21+
test = new _506();
2222
}
2323

2424
@Before

0 commit comments

Comments
 (0)