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 functional.stage2; | |
| import java.util.Iterator; | |
| /** | |
| * 커플링을 이용한 자연수 분류기 | |
| * | |
| * @author whitebeard-k | |
| * | |
| */ |
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 functional.stage3; | |
| import java.util.Iterator; | |
| /** | |
| * 자연수 찾기 | |
| * 구성을 이용한 함수형 처리 | |
| * | |
| * @author whitebeard-k | |
| * |
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
| <coordinator-app name="app-coord" frequency="${coord:days(1)}" | |
| start="2009-01-01T23:00Z" end="2009-12-31T23:00Z" | |
| timezone="UTC" xmlns="uri:oozie:coordinator:0.1"> | |
| <action> | |
| <workflow> | |
| <app-path>hdfs://bar:8020/usr/joe/logsaggretor-wf</app-path> | |
| <configuration> | |
| <!-- dateOffset --> | |
| <!-- timeUnit: 'DAY', 'MONTH', 'HOUR', 'MINUTE', 'MONTH' --> | |
| <property> |
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
| import java.io.BufferedReader; | |
| import java.io.IOException; | |
| import java.io.InputStreamReader; | |
| import java.util.StringTokenizer; | |
| public class Problem11505 { | |
| static int N; | |
| static int M; | |
| static int K; |
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 sdk.backjun.bfs; | |
| import java.io.BufferedReader; | |
| import java.io.IOException; | |
| import java.io.InputStreamReader; | |
| import java.util.LinkedList; | |
| import java.util.Queue; | |
| import java.util.StringTokenizer; | |
| public class Problem7576 { |
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 sdk.backjun.dfs; | |
| import java.io.BufferedReader; | |
| import java.io.IOException; | |
| import java.io.InputStreamReader; | |
| import java.util.StringTokenizer; | |
| /** | |
| * 백준, 14500 | |
| * 테트로미노 |
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
| import java.util.Properties; | |
| import org.apache.commons.cli.CommandLine; | |
| import org.apache.commons.cli.CommandLineParser; | |
| import org.apache.commons.cli.DefaultParser; | |
| import org.apache.commons.cli.HelpFormatter; | |
| import org.apache.commons.cli.Option; | |
| import org.apache.commons.cli.Options; | |
| import org.apache.commons.cli.ParseException; |
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 sdk.backjun.dfs; | |
| import java.io.BufferedReader; | |
| import java.io.IOException; | |
| import java.io.InputStreamReader; | |
| import java.util.Arrays; | |
| import java.util.LinkedList; | |
| import java.util.Queue; | |
| import java.util.StringTokenizer; |
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 sdk.backjun; | |
| import java.util.Scanner; | |
| /** | |
| * 백준, 14890, 경사로 | |
| * | |
| * @author whitebeard-k | |
| * | |
| */ |
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
| import java.util.ArrayList; | |
| import java.util.Map; | |
| import java.util.stream.Collectors; | |
| import java.util.stream.Stream; | |
| public class MapReduce { | |
| public static void main(String[] args) { | |
| ArrayList<String> strs = new ArrayList<>(); |