Skip to content

Commit 2ff7c27

Browse files
committed
Clean up
1 parent 803dbbf commit 2ff7c27

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/array/GroupPeopleGivenGroupSizeTheyBelongTo.java renamed to src/array/GroupThePeopleGivenTheGroupSizeTheyBelongTo.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
* Time complexity: O(n)
1212
* Space complexity: O(n)
1313
*/
14-
public class GroupPeopleGivenGroupSizeTheyBelongTo {
14+
public class GroupThePeopleGivenTheGroupSizeTheyBelongTo {
1515

1616
public List<List<Integer>> groupThePeople(int[] groupSizes) {
1717
Map<Integer, List<Integer>> groupToPeople = new HashMap<>();

src/linked_list/FindGreatestCommonDivisorsInLinkedList.java renamed to src/linked_list/InsertGreatestCommonDivisorsInLinkedList.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
package linked_list;
22

33
/**
4-
* Description: https://www.baeldung.com/java-greatest-common-divisor
4+
* Description: https://leetcode.com/problems/insert-greatest-common-divisors-in-linked-list
55
* Difficulty: Medium
66
* Time complexity: O(n * log v)
77
* Space complexity: O(1)
88
*/
9-
public class FindGreatestCommonDivisorsInLinkedList {
9+
public class InsertGreatestCommonDivisorsInLinkedList {
1010

1111
public ListNode insertGreatestCommonDivisors(ListNode head) {
1212
ListNode current = head;

0 commit comments

Comments
 (0)