File tree Expand file tree Collapse file tree 1 file changed +38
-0
lines changed Expand file tree Collapse file tree 1 file changed +38
-0
lines changed Original file line number Diff line number Diff line change 163
163
- [ Union find] ( #union-find )
164
164
- [ Greedy] ( #greedy )
165
165
- [ Dynamic-programming] ( #dynamic-programming )
166
+ - [ Online IDE templates] ( #online-ide-templates )
166
167
- [ References] ( #references )
167
168
168
169
<!-- /MarkdownTOC -->
@@ -3285,6 +3286,43 @@ public int houseRobber_RollingArray( int[] A )
3285
3286
* answer: varies with problems
3286
3287
+ Examples: Backpack I-VI (Lintcode), K Sum (Lintcode), Minimum adjustment cost (Lintcode)
3287
3288
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
+
3288
3326
#### References
3289
3327
* [ Java-success.com] ( http://www.java-success.com/ )
3290
3328
* [ Massive tech interview] ( http://massivetechinterview.blogspot.com/ )
You can’t perform that action at this time.
0 commit comments