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
# set some history options | |
setopt appendhistory | |
setopt sharehistory | |
setopt incappendhistory | |
setopt hist_ignore_all_dups | |
setopt hist_save_no_dups | |
setopt hist_ignore_dups | |
setopt hist_find_no_dups | |
# case insensitive completion |
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
create table Student ( | |
stuID number not null, | |
stuName varchar2(10), | |
house number, | |
gpa number, | |
primary key (stuID), | |
check ( gpa between 0.0 and 4.0 ) | |
); | |
create table Degree |
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
#include <iostream> | |
#include <vector> | |
// starting node (can be anything from 0 to 9) | |
int START_NODE = 0; | |
// since int cannot represent infinity, a value high enough above anything we should encounter will be used | |
int HIGH_VAL = 999; | |
// size of adjacency matrix |