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
// Copyright (c) 2023 Immanuel Garcia | |
#include <iostream> | |
#include <string> | |
using std::string, std::cout, std::endl; | |
class Node { | |
public: | |
char data; | |
Node *next; | |
Node *prev; |
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
void printMiddle(Node* head) { | |
if (head == NULL) { | |
// Return because the list is empty | |
return; | |
} | |
Node* slow_ptr = head; // This will traverse the list one element at a time | |
Node* fast_ptr = head; // This will go through the list two elements at a time | |
while (fast_ptr != NULL && fast_ptr->next != NULL) { |
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
$ pkgutil --expand swift-DEVELOPMENT-SNAPSHOT-2016-03-01-a-osx.pkg swift-DEVELOPMENT-SNAPSHOT-2016-03-01-a-osx | |
$ cd swift-DEVELOPMENT-SNAPSHOT-2016-03-01-a-osx | |
$ cd swift-DEVELOPMENT-SNAPSHOT-2016-03-01-a-osx-package.pkg | |
$ mv Payload Payload.zip | |
$ open . | |
double click to extract | |
$ cd Payload\ 2/usr/bin | |
$ ./swiftc -v | |
Apple Swift version 3.0-dev (LLVM b361b0fc05, Clang 11493b0f62, Swift 24a0c3de75) |
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
agency_id | agency_name | agency_url | agency_timezone | agency_lang | agency_phone | |
---|---|---|---|---|---|---|
MTA NYCT | MTA New York City Transit | http://www.mta.info | America/New_York | en | 718-330-1234 |
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
agency_id,agency_name,agency_url,agency_timezone,agency_lang,agency_phone | |
MTA NYCT,MTA New York City Transit, http://www.mta.info,America/New_York,en,718-330-1234 |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
We can't make this file beautiful and searchable because it's too large.
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
date,store_nbr,transactions | |
2013-01-01,25,770 | |
2013-01-02,1,2111 | |
2013-01-02,2,2358 | |
2013-01-02,3,3487 | |
2013-01-02,4,1922 | |
2013-01-02,5,1903 | |
2013-01-02,6,2143 | |
2013-01-02,7,1874 | |
2013-01-02,8,3250 |
We can't make this file beautiful and searchable because it's too large.
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
STUID,DOB,GENDER,ETHNICITYID,ETHNICITY,CITYID,CITY,DISTRICTID,DISTRICT,FEEDERID,FEEDER,PROGRAMSTART,CODE,PROGRAM,DEGREEID,DEGREE,PROGRAMSTATUS,GRADDATE,PROGRAMEND,BREAK,ENROLLEDSEMESTER,SEMESTERCREDITSATTEMPTED,SEMESTERCREDITSEARNED,SEMESTERPOINTS,SEMESTERGPA,COURSECODE,COURSETITLE,COURSEGRADE,COURSECREDITS,COURSEPOINTS,COURSEGPA,COMMENTS,CGPA | |
1,3/20/1983,F,8,Creole,"53,222",BELIZE CITY,75,BELIZE,164,UNIVERSITY OF BELIZE,8/16/2004,BINT,Information Technology,13,Bachelor of Science,Graduated,6/11/2006,5/19/2006,-,2004-1,3.00,3.00,9.00,2.50,CMPS314,ALGORITHMS,B,3.00,9.00,3.00,,3.26 | |
1,3/20/1983,F,8,Creole,"53,222",BELIZE CITY,75,BELIZE,164,UNIVERSITY OF BELIZE,8/16/2004,BINT,Information Technology,13,Bachelor of Science,Graduated,6/11/2006,5/19/2006,-,2004-1,3.00,3.00,7.50,2.50,CMPS316,PROGRAMMING LANGUAGES,C+,3.00,7.50,2.50,,3.26 | |
1,3/20/1983,F,8,Creole,"53,222",BELIZE CITY,75,BELIZE,164,UNIVERSITY OF BELIZE,8/16/2004,BINT,Information Technology,13,Bachelor of Science,Graduated,6/11/2006,5/19/2006,-,2004-2,3.00, |
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
/* vim: tabstop=4 shiftwidth=4 noexpandtab | |
* | |
* ELF Static Executable Loader | |
* | |
* Part of the ToAru OS Kernel | |
* (C) 2011 Kevin Lange | |
* Released under the terms of the NCSA License, see the included | |
* README file for further information. | |
*/ |
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
/** Project 3 - Interactive Wii Menu */ | |
/* | |