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
//Kristofer Hult | |
//Algorithms Project 4 | |
package sudokuSolver; | |
import java.util.*; | |
import java.io.*; | |
public class sudokuSolver { | |
private static int[][] board; |
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
/* Combine Tables by Kristofer Hult */ | |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> | |
// how many characters can be used on each line | |
#define LINE_LEN 200 | |
// Removes /n from a string. | |
void trim(char *string) | |
{ |
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
//================================================== | |
// | |
// Homework 2, Part B | |
// | |
// Name: Kristofer Hult | |
// | |
//================================================== | |
//================================================ |
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
##Kristofer Hult | |
##Homework 3 | |
##Part 2 | |
##Compute e to the x | |
.data | |
str1: .asciiz "Give a number X " | |
nline: .asciiz "\n" | |
result1: .asciiz " e raised to equals" |
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
##Kristofer Hult, Computer Security HW1 | |
from string import punctuation | |
Begin = 97 | |
Finish = 122 | |
def askKey(): | |
key = input("What would you like to set for your key?: ") | |
return key.lower() | |
def getPlaintext(): | |
plaintext = input("Please enter text to be encrypted: ") | |
return plaintext |
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
''' | |
There should be several functions in this module. Several are | |
already provided, in case they are useful: | |
datextract | |
eightdigs | |
fieldict | |
citypop | |
eventfreq | |
manuftop10 |