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
public class SpiralMatrix { | |
enum Direction { | |
LEFT_RIGHT, TOP_DOWN, RIGHT_LEFT, BOTTOM_UP | |
}; | |
public static void traverseMatrixInSpiral(char[][] matrix, int initialRow, | |
int finalRow, int initialColumn, int finalColumn, int totalElems, | |
int visited, Direction direction) { | |
System.out.println("Num Elems: " + totalElems + " visited: " + visited); |
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
private static String translateToProteins(String dna) { | |
String result = ""; | |
int idx = dna.indexOf(START_CODON, 0); | |
while (idx < dna.length() && idx != -1) { | |
String dnaChunk = dna.substring(idx, idx + 3); | |
if (dnaChunk.equals(END_CODON_1) || dnaChunk.equals(END_CODON_2) | |
|| dnaChunk.equals(END_CODON_3)) { | |
idx = dna.indexOf(START_CODON, idx); |
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 com.linkingenius.parser | |
import java.io.File | |
import java.io.FileWriter | |
// Handler to perform write operations in a file | |
case class FileHandler(file: File) { | |
def add(text: String): Unit = { | |
val fw = new FileWriter(file, true) |
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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> | |
<html> | |
<head> | |
<style type="text/css"> | |
body{background-color:#ccc} | |
#box{ | |
width:100px; |
NewerOlder