mirror of
https://github.com/TheAlgorithms/Java.git
synced 2025-08-02 14:13:47 +08:00
style: use proper spelling (#5436)
checkstyle: fix typos, style Co-authored-by: alxkm <alx@alx.com> Co-authored-by: Piotr Idzik <65706193+vil02@users.noreply.github.com>
This commit is contained in:
@ -14,8 +14,8 @@ import java.util.Arrays;
|
||||
*
|
||||
* Output : YES
|
||||
*/
|
||||
public final class BipartiteGrapfDFS {
|
||||
private BipartiteGrapfDFS() {
|
||||
public final class BipartiteGraphDFS {
|
||||
private BipartiteGraphDFS() {
|
||||
}
|
||||
|
||||
private static boolean bipartite(int v, ArrayList<ArrayList<Integer>> adj, int[] color, int node) {
|
@ -7,7 +7,7 @@ import java.util.PriorityQueue;
|
||||
/**
|
||||
* @author Arun Pandey (https://github.com/pandeyarun709)
|
||||
*/
|
||||
public class MergeKSortedLinkedlist {
|
||||
public class MergeKSortedLinkedList {
|
||||
|
||||
/**
|
||||
* This function merge K sorted LinkedList
|
Reference in New Issue
Block a user