Moditied Others folder .java file name and class name

This commit is contained in:
unknown 2017-12-14 11:57:43 +09:00
parent 6498d4a937
commit 9d183e6255
4 changed files with 4 additions and 4 deletions

View File

@ -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);

View File

@ -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

View File

@ -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

View File

@ -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 +"