From 9d183e62555622200f175787f73dd710d01fa496 Mon Sep 17 00:00:00 2001 From: unknown Date: Thu, 14 Dec 2017 11:57:43 +0900 Subject: [PATCH] Moditied Others folder .java file name and class name --- Others/Dijkshtra.java | 2 +- Others/InsertDeleteInArray.java | 2 +- Others/RootPrecision.java | 2 +- Others/StackPostfixNotation.java | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Others/Dijkshtra.java b/Others/Dijkshtra.java index 741c9bd3..05011dd4 100644 --- a/Others/Dijkshtra.java +++ b/Others/Dijkshtra.java @@ -9,7 +9,7 @@ import java.util.Arrays; import java.util.Scanner; import java.util.Stack; -public class Solution { +public class Dijkshtra { public static void main(String[] args) throws IOException { Scanner in =new Scanner(System.in); diff --git a/Others/InsertDeleteInArray.java b/Others/InsertDeleteInArray.java index 12bbdc19..85702066 100644 --- a/Others/InsertDeleteInArray.java +++ b/Others/InsertDeleteInArray.java @@ -1,5 +1,5 @@ import java.util.*; -public class Array { +public class InsertDeleteInArray { public static void main(String[] args) { Scanner s = new Scanner(System.in); // Input statement diff --git a/Others/RootPrecision.java b/Others/RootPrecision.java index 0ae00de0..b792d692 100644 --- a/Others/RootPrecision.java +++ b/Others/RootPrecision.java @@ -4,7 +4,7 @@ import java.text.*; import java.math.*; import java.util.regex.*; -public class Solution { +public class RootPrecision { public static void main(String[] args) { //take input diff --git a/Others/StackPostfixNotation.java b/Others/StackPostfixNotation.java index c04b0ac6..be77eead 100644 --- a/Others/StackPostfixNotation.java +++ b/Others/StackPostfixNotation.java @@ -1,6 +1,6 @@ import java.util.*; -public class Postfix { +public class StackPostfixNotation { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); String post = scanner.nextLine(); // Takes input with spaces in between eg. "1 21 +"