mirror of
https://github.com/TheAlgorithms/Java.git
synced 2025-07-08 02:04:31 +08:00
Moditied Others folder .java file name and class name
This commit is contained in:
@ -9,7 +9,7 @@ import java.util.Arrays;
|
|||||||
import java.util.Scanner;
|
import java.util.Scanner;
|
||||||
import java.util.Stack;
|
import java.util.Stack;
|
||||||
|
|
||||||
public class Solution {
|
public class Dijkshtra {
|
||||||
|
|
||||||
public static void main(String[] args) throws IOException {
|
public static void main(String[] args) throws IOException {
|
||||||
Scanner in =new Scanner(System.in);
|
Scanner in =new Scanner(System.in);
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
import java.util.*;
|
import java.util.*;
|
||||||
public class Array {
|
public class InsertDeleteInArray {
|
||||||
|
|
||||||
public static void main(String[] args) {
|
public static void main(String[] args) {
|
||||||
Scanner s = new Scanner(System.in); // Input statement
|
Scanner s = new Scanner(System.in); // Input statement
|
||||||
|
@ -4,7 +4,7 @@ import java.text.*;
|
|||||||
import java.math.*;
|
import java.math.*;
|
||||||
import java.util.regex.*;
|
import java.util.regex.*;
|
||||||
|
|
||||||
public class Solution {
|
public class RootPrecision {
|
||||||
|
|
||||||
public static void main(String[] args) {
|
public static void main(String[] args) {
|
||||||
//take input
|
//take input
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
import java.util.*;
|
import java.util.*;
|
||||||
|
|
||||||
public class Postfix {
|
public class StackPostfixNotation {
|
||||||
public static void main(String[] args) {
|
public static void main(String[] args) {
|
||||||
Scanner scanner = new Scanner(System.in);
|
Scanner scanner = new Scanner(System.in);
|
||||||
String post = scanner.nextLine(); // Takes input with spaces in between eg. "1 21 +"
|
String post = scanner.nextLine(); // Takes input with spaces in between eg. "1 21 +"
|
||||||
|
Reference in New Issue
Block a user