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.Scanner; | |
| /** | |
| * @author Pedro Daia | |
| */ | |
| public class ciclovias | |
| { | |
| public static void main(final String[] args) | |
| { | |
| final Scanner s = new Scanner(System.in); |
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 br.com.pxpc2.treino; | |
| import java.util.LinkedList; | |
| import java.util.Scanner; | |
| /** | |
| * OBI 2016 questao Toca do Saci | |
| * @author Pedro Daia | |
| */ | |
| public class TocaDois |
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 br.com.pxpc2.treino; | |
| /** | |
| * @author Pedro Daia | |
| */ | |
| public class Sorting | |
| { | |
| public static void main(final String[] args) | |
| { | |
| final int[] array = { 12, 9, 27, 92, 91, 86, 201}; |
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 br.com.pxpc2.treino; | |
| import java.util.Scanner; | |
| public class TocaDois | |
| { | |
| private static int n; | |
| private static int m; | |
| private static int[][] sala; |
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 treino; | |
| import java.util.ArrayList; | |
| import java.util.LinkedList; | |
| import java.util.Scanner; | |
| /** | |
| * @author Pedro Daia | |
| */ | |
| public class Toca |
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 treino; | |
| import java.util.ArrayList; | |
| import java.util.LinkedList; | |
| import java.util.Scanner; | |
| /** | |
| * @author Pedro Daia | |
| */ | |
| public class Toca |
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 br.com.pxpc2.treino; | |
| import java.util.ArrayList; | |
| import java.util.List; | |
| import java.util.Scanner; | |
| /** | |
| * Questao 03 OBI 2014 2a fase | |
| * | |
| * @author Pedro Daia |
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 br.com.pxpc2.treino; | |
| import java.util.ArrayList; | |
| import java.util.Scanner; | |
| /** | |
| * @author Pedro Daia | |
| */ | |
| public class Arvores { |
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 treino; | |
| import java.util.ArrayList; | |
| import java.util.Scanner; | |
| /** | |
| * @author Pedro Daia | |
| */ | |
| public class Arvores { |
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 us.brtm.cfg; | |
| import org.objectweb.asm.tree.AbstractInsnNode; | |
| import org.objectweb.asm.tree.LabelNode; | |
| import org.objectweb.asm.tree.MethodNode; | |
| import org.objectweb.asm.tree.analysis.*; | |
| /** | |
| * @author Pedro Daia Cardoso | |
| */ |