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
    
  
  
    
  | //The footer | |
| Vue.component('footer-component', { | |
| template: ` | |
| <footer id="footer" class="main"> | |
| <ul> | |
| <template v-for="footerSection in footerSections"> | |
| <li><a href="{{ footerSection.link }}">{{ footerSection.text }}</a></li> | |
| </template> | |
| </ul> | |
| <p> MIT <a href="https://github.com/ZacharyJacobCollins">@Zachary Collins {{footerSections}}</a></p> | 
  
    
      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.Scanner; | |
| //Zachary Collins | |
| //100% Vegetarian Code | |
| public class One { | |
| //The main class | |
| public static void main(String[] args) { | 
  
    
      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 LinkedList { | |
| private Node head; | |
| public int listCount; | |
| public LinkedList() { | |
| head = new Node(""); | |
| listCount = 1; | |
| } | |
  
    
      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; | |
| import java.lang.reflect.*; | |
| public class Converter { | |
| public String Type, Number, Excess, TwosComp, OnesComp, SignedMag; | |
| public boolean isNegative = false; | |
| //TODO add input.close not sure why throwing nosuch element exception | |
| public static void main(String[] args) throws Exception { | |
| boolean done = false; | 
  
    
      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
    
  
  
    
  | var path = require('path'); | |
| var gulp = require('gulp'); | |
| var run = require('gulp-run'); | |
| var gutil = require('gulp-util'); | |
| var minimist = require('minimist'); | |
| var options = minimist(process.argv.slice(2), { | |
| string: 'env', | 
  
    
      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
    
  
  
    
  | /** | |
| * Zachary Collins | |
| * Lab 2 | |
| * 314 | |
| */ | |
| import java.util.Scanner; | |
| /** Class Warshall **/ | |
| public class Warshall | 
  
    
      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
    
  
  
    
  | /** | |
| * | |
| * Testing all java operators to experience how they work | |
| * bitwise: designating an operator in a programming language that manipulates the individual bits in a byte or word. | |
| * | |
| */ | |
| public class Driver { | |
| public static void main(String[] args) { | 
  
    
      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
    
  
  
    
  | /* | |
| * Zachary Collins | |
| * Discrete 314 | |
| * November 29 | |
| * Lab 3 | |
| */ | |
| import java.util.*; | |
| import java.lang.*; | |
| import java.io.*; | 
  
    
      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.*; | |
| public class Bipartite | |
| { | |
| private int colors = 2; | |
| private int n; | |
| /** | |
| * Check to ensure that we can move to the desired position within the adjacency matrix | |
| * | 
  
    
      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.*; | |
| public class Bipartite | |
| { | |
| private int colors = 2; | |
| private int n; | |
| /** | |
| * Check to ensure that we can move to the desired position within the adjacency matrix | |
| * |