Skip to content

Commit 9d9c86c

Browse files
authored
Merge pull request TheAlgorithms#357 from LeeChungWan/Others
Modified Others folder .java file name and class name
2 parents 6498d4a + 9d183e6 commit 9d9c86c

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

Others/Dijkshtra.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
import java.util.Scanner;
1010
import java.util.Stack;
1111

12-
public class Solution {
12+
public class Dijkshtra {
1313

1414
public static void main(String[] args) throws IOException {
1515
Scanner in =new Scanner(System.in);

Others/InsertDeleteInArray.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import java.util.*;
2-
public class Array {
2+
public class InsertDeleteInArray {
33

44
public static void main(String[] args) {
55
Scanner s = new Scanner(System.in); // Input statement

Others/RootPrecision.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
import java.math.*;
55
import java.util.regex.*;
66

7-
public class Solution {
7+
public class RootPrecision {
88

99
public static void main(String[] args) {
1010
//take input

Others/StackPostfixNotation.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import java.util.*;
22

3-
public class Postfix {
3+
public class StackPostfixNotation {
44
public static void main(String[] args) {
55
Scanner scanner = new Scanner(System.in);
66
String post = scanner.nextLine(); // Takes input with spaces in between eg. "1 21 +"

0 commit comments

Comments
 (0)