1903 Oklahoma Sooners football team

The 1903 Oklahoma Sooners football team represented the University of Oklahoma in the 1903 college football season. In their second year under head coach Mark McMahon, the Sooners compiled a 5–4–3 record, and outscored their opponents by a combined total of 93 to 35.[1][2]

1903 Oklahoma Sooners football
ConferenceIndependent
1903 record5–4–3
Head coachMark McMahon (2nd season)
1903 Southern college football independents records
Conf  Overall
TeamW L T  W L T
Kentucky University      7 1 0
West Virginia      7 1 0
VPI      5 1 0
South Carolina      8 2 0
East Florida Seminary      4 1 0
Stetson      1 0 1
Virginia      7 2 1
Georgetown      7 3 0
Richmond      6 3 1
VMI      2 1 0
Texas A&M      7 3 1
North Carolina      6 3 0
Maryland      7 4 0
Florida State      3 2 1
Oklahoma      5 4 3
Delaware      4 4 0
North Carolina A&M      4 4 0
Arkansas      3 4 0
Navy      4 7 1
Florida      1 2 0
Oklahoma A&M      0 2 2
William & Mary      1 3 0
Davidson      1 4 0
TCU      0 7 0

Schedule

DateOpponentSiteResult
October 3ChiloccoNorman, Oklahoma TerritoryW 38–5
October 10KingfisherNorman, Oklahoma TerritoryT 0–0
October 17at TexasT 6–6
October 24at Texas A&MBryan, TXW 6–0
October 31FairmountNorman, Oklahoma TerritoryW 11–5
November 6Kansas State NormalNorman, Oklahoma TerritoryT 6–6
November 13at KansasL 5–17
November 20TexasNorman, Oklahoma TerritoryL 5-11
November 25ArkansasNorman, Oklahoma TerritoryL 0-12
November 30at Missouri MinesRolla, MSW 12–6
December 3vs. Bethany (KS)Oklahoma City, Oklahoma TerritoryL 10–12
December 10Lawton Town TeamNorman, Oklahoma TerritoryW 27–5
gollark: https://esolangs.org/wiki/WHY
gollark: All three.
gollark: Unless you turn up the optimization setting to ~30, at which point it makes quite fast code.
gollark: ```python#!/usr/bin/env python3import argparseimport subprocessparser = argparse.ArgumentParser(description='Compile a WHY program')parser.add_argument("input", help="File containing WHY source code")parser.add_argument("-o", "--output", help="Filename of the output executable to make", default="./a.why")parser.add_argument("-O", "--optimize", help="Optimization level", type=int, default="0")args = parser.parse_args()def build_C(args): template = """#define QUITELONG long long intconst QUITELONG max = @max@;int main() { QUITELONG i = 0; while (i < max) { i++; } @code@} """ for k, v in args.items(): template = template.replace(f"@{k}@", str(v)) return templateinput = args.inputoutput = args.outputtemp = "ignore-this-please"with open(input, "r") as f: contents = f.read() looplen = max(1000, (2 ** -args.optimize) * 1000000000) code = build_C({ "code": contents, "max": looplen }) with open(temp, "w") as out: out.write(code)subprocess.run(["gcc", "-x", "c", "-o", output, temp])```The compiler for the new `WHY` language. Made as a joke because someone on the esolangs server insisted that all compiled languages were fast.
gollark: BT being bad, who would ever guess so?

References

  1. "Oklahoma Yearly Results (1900–1904)". College Football Data Warehouse. David DeLassus. Retrieved July 20, 2015.
  2. "1900 Oklahoma Sooners Schedule and Results". SR/College Football. Sports Reference LLC. Retrieved July 20, 2015.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.