|
Groovy example source code file (knucleotide.java)
This example Groovy source code file (knucleotide.java) is included in the DevDaily.com
"Java Source Code
Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.
The Groovy knucleotide.java source code
/* The Computer Language Benchmarks Game
http://shootout.alioth.debian.org/
contributed by James McIlree
*/
import java.util.*;
import java.io.*;
import java.util.concurrent.*;
public class knucleotide {
String sequence;
int count = 1;
knucleotide(String sequence) {
this.sequence = sequence;
}
static ArrayList<Callable< Map > createFragmentTasks(final String sequence, int[] fragmentLengths) {
ArrayList<Callable
Other Groovy examples (source code examples)
Here is a short list of links related to this Groovy knucleotide.java source code file:
|