Skip to content

Commit 16b908d

Browse files
committed
Update schedule.md
1 parent 386ba77 commit 16b908d

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

docs/schedule.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
|11/11| [Homework 2](https://emory.zoom.us/rec/share/1FzBXB8581_8fTwXZz1lCLGPquaFgE13i9TWY-f8u2wpifBzTtq4m31qAyKwTd0m.khjxck1oQ5s4K23R) | | [hw 3](https://canvas.emory.edu/courses/76034/assignments/408681) |
3030
|11/16| [Network Flow](https://emory.zoom.us/rec/share/AyviVMlLixWFDeJzUC_wb__x0AvIhJN8GFlD1u_ffst-V9fIGYvqQnZgSZlJD-jB.84wsBJ68HPBVxogb) | | [quiz 8](https://canvas.emory.edu/courses/76034/assignments/410195) |
3131
|11/18| [Dynamic Programming](https://emory.zoom.us/rec/share/P1k3sxxd-2GSF26EQmPjVoCU6xZ_FOOZ-yQ92yJLZASLqKxVU_0yK8lZyqEN2oCV.tzbLlckOfJrrRAyH) | [book](https://emory.gitbook.io/dsa-java/dynamic-programming), [main](../src/main/java/edu/emory/cs/dynamic), [test](../src/test/java/edu/emory/cs/dynamic) | |
32-
|11/23| [Dynamic Programming](https://emory.zoom.us/rec/share/bcmHGe3DHQA-VEAzgfmv74SZsiv-NFsPVFJgxneu8akX4dufQwVdN4JxX2PFgF_z.WEJrZfqhrE3OiiAM) | | [quiz 9]() |
32+
|11/23| [Dynamic Programming](https://emory.zoom.us/rec/share/bcmHGe3DHQA-VEAzgfmv74SZsiv-NFsPVFJgxneu8akX4dufQwVdN4JxX2PFgF_z.WEJrZfqhrE3OiiAM) | | [quiz 9](https://canvas.emory.edu/courses/76034/assignments/414548) |
3333

3434
<!-- -->
3535
<!-- [Shortest Path Algorithms]() | [md](), [pdf](shortest_path_algorithms.pdf), [main](../src/main/java/edu/emory/cs/graph/path/) | [quiz 8](quiz0.md#quiz-8) | -->

src/main/java/edu/emory/cs/dynamic/lcs/LCSQuiz.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616
package edu.emory.cs.dynamic.lcs;
1717

1818

19-
import java.util.ArrayList;
20-
import java.util.List;
19+
import java.util.Set;
20+
import java.util.TreeSet;
2121

2222
/**
2323
* @author Jinho D. Choi ({@code jinho.choi@emory.edu})
@@ -26,11 +26,11 @@ public class LCSQuiz extends LCSDynamic {
2626
/**
2727
* @param a the first string.
2828
* @param b the second string.
29-
* @return a list of all longest common sequences between the two strings.
29+
* @return a set of all longest common sequences between the two strings.
3030
*/
31-
public List<String> solveAll(String a, String b) {
31+
public Set<String> solveAll(String a, String b) {
3232
// TODO: to be filled
33-
return new ArrayList<>();
33+
return null;
3434
}
3535
}
3636

0 commit comments

Comments
 (0)