Skip to content

Commit 3cc9f49

Browse files
author
freemanzhang
committed
add coderpad templates
1 parent 6c5b59b commit 3cc9f49

File tree

1 file changed

+38
-0
lines changed

1 file changed

+38
-0
lines changed

README.md

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -163,6 +163,7 @@
163163
- [Union find](#union-find)
164164
- [Greedy](#greedy)
165165
- [Dynamic-programming](#dynamic-programming)
166+
- [Online IDE templates](#online-ide-templates)
166167
- [References](#references)
167168

168169
<!-- /MarkdownTOC -->
@@ -3285,6 +3286,43 @@ public int houseRobber_RollingArray( int[] A )
32853286
* answer: varies with problems
32863287
+ Examples: Backpack I-VI (Lintcode), K Sum (Lintcode), Minimum adjustment cost (Lintcode)
32873288

3289+
#### Online IDE templates
3290+
* Coderpad
3291+
3292+
```java
3293+
import org.junit.*;
3294+
import org.junit.runner.*;
3295+
import java.io.*;
3296+
import java.util.*;
3297+
3298+
public class Solution
3299+
{
3300+
3301+
@Test
3302+
public void test1()
3303+
{
3304+
/*
3305+
3306+
*/
3307+
}
3308+
3309+
@Ignore
3310+
@Test
3311+
public void test3()
3312+
{
3313+
/*
3314+
3315+
*/
3316+
}
3317+
3318+
public static void main(String[] args)
3319+
{
3320+
JUnitCore.main("Solution");
3321+
}
3322+
3323+
}
3324+
```
3325+
32883326
#### References
32893327
* [Java-success.com](http://www.java-success.com/)
32903328
* [Massive tech interview](http://massivetechinterview.blogspot.com/)

0 commit comments

Comments
 (0)