Hi,Everyone
I wrote a project to help you coding leetcode problem more easily!
Sometimes,we want to debug the program in our ide,But it's difficult!
Input maybe looks like [[1,2,3],[23,32,32],......].In order to debug in ide, we have to write some code to get the input.It takes a lot of time to get the input ,if the length of input is long.So I write a project to help you debug in ide just like in leetcode.
```
public class IntegerArrayTest {
//1-D int array pass
//1-D String array pass
@Input(value = "[[4.3,5.31],[6.2,7.3],[8.1,9.2]]",container = "array",type = "float")
@Input(value = "[[[12,31,32],[12,32,32]],[[12,31,32],[12,32,32]]]",container = "array",type = "int")
@Solution
public void IntegerarrayTest(float[][] nums,int[][][] numm)
{
System.out.println("I'm in");
}
public static void main(String[] args){
easyLeetcode.Run(IntegerArrayTest.class);
}}
```
All you need to do is just paste the input into the value,and specify the container ie.array and type such as float,double,int.Then you could run the program just like in leetcode.EasyLeetCode could handle any dimension and you don't need to specify the number of dimension
It also support a lot of container,such as tree,ArrayList,LikedList
Here is my github link https://github.com/TangDH03/easyLeetcode
If you have some good idea you could raise a PR, If you have some problem when you use it,raise a issue let me know