This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @echo off | |
| color 02 | |
| echo. | |
| echo ========================== | |
| echo Folder Shortcut Healer | |
| echo ========================== | |
| echo. | |
| echo. | |
| echo CREATED BY AKSHAY PETHANI | |
| echo. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package interviewbitProgramming; | |
| import java.util.ArrayList; | |
| import java.util.List; | |
| import java.util.Scanner; | |
| /** | |
| * Created by Akshay Pethani on 2016-12-06. | |
| * | |
| * Detailed Problem can be found on following link: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import java.util.*; | |
| public class ArrayListMatrix { | |
| public static void main(String args[]){ | |
| List<ArrayList<Integer>> a = new ArrayList<>(); | |
| ArrayList<Integer> a1 = new ArrayList<Integer>(); | |
| ArrayList<Integer> a2 = new ArrayList<Integer>(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import java.io.IOException; | |
| import java.io.InputStream; | |
| public class ExecuteDOSCommand { | |
| public static void main(String[] args) { | |
| final String dosCommand = "ipconfig"; | |
| try { | |
| final Process process = Runtime.getRuntime().exec(dosCommand ); | |
| final InputStream in = process.getInputStream(); | |
| int ch; |
NewerOlder