1910–11 Belgian First Division

Statistics of Belgian First Division in the 1910–11 season.

Overview

It was contested by 12 teams, and C.S. Brugeois won the championship.[1]

League standings

Pos Team Pld W D L GF GA GD Pts Relegation
1 C.S. Brugeois 21 16 2 3 76 24 +52 34
2 F.C. Brugeois 21 16 1 4 70 27 +43 33
3 Daring Club de Bruxelles 22 12 3 7 52 33 +19 27
4 Union Saint-Gilloise 22 12 3 7 55 36 +19 27
5 Racing Club de Bruxelles 22 11 2 9 52 42 +10 24
6 Beerschot 22 9 5 8 55 45 +10 23
7 Antwerp F.C. 22 9 3 10 43 46 3 21
8 R.C. Malines 22 8 2 12 39 59 20 18
9 Léopold Club de Bruxelles 22 6 6 10 36 62 26 18
10 Excelsior S.C. de Bruxelles 22 6 4 12 36 60 24 16
11 Standard Club Liégeois 22 5 4 13 32 48 16 14
12 S.C. Courtraisien 22 1 5 16 20 87 67 7 Relegated to Promotion Division
Source: [1]
gollark: These are done → muahahaha.
gollark: ... also array literals, bee their bad docs.
gollark: Please also give me write access to the repo.
gollark: Oh, right, array indexing.
gollark: ```python# parsita-based pseudocode syntax parserfrom stmt import *from parsita import *from parsita.util import constantdef compose(f, g): return lambda x: f(g(x))def map_expr(x): start, end = x if end == "": return start return Op([start, end[1]], end[0])def map_unop_expr(x): return Op(x[1], x[0])def aliases(name, aliases): p = lit(name) for alias in aliases: p |= (lit(alias) > (lambda _: name)) return pclass ExprParser(TextParsers): ε = lit("") IntLit = reg("\-?[0-9]+") > compose(IntLit, int) StrLit = "'" >> reg("[^']*") << "'" > StrLit # TODO escapes (not in "spec" but could be needed) FloatLit = reg("\-?[0-9]+\.[0-9]+") > compose(FloatLit, float) Identifier = reg("[a-zA-Z_]+[a-zA-Z_0-9]*") > Var BracketedExpr = "(" >> Expr << ")" UnaryOperator = lit("NOT") Start = FloatLit | StrLit | IntLit | BracketedExpr | (UnaryOperator & Expr > map_unop_expr) | Identifier # avoid left recursion problems by not doing left recursion # AQA pseudocode does not appear to have a notion of "operator precedence", simplifying parsing logic nicely BinaryOperator = aliases("≤", ["<="]) | aliases("≠", ["!="]) | aliases("≥", [">="]) | lit("DIV") | lit("MOD") | lit("AND") | lit("OR") | reg("[+/*\-=<>]") End = (BinaryOperator & Expr) | ε Expr = (Start & End) > map_exprparse = ExprParser.Expr.parsex = parse("1+2+3 != 6 AND NOT 4 AND x + y")if isinstance(x, Failure): print(x.message)else: print(x.value)```

See also

References

  1. Ploquin, Phil; Nackaerts, Luc; Coolsaet, Jeroen. "Belgium – Final Tables 1895–2008". The Rec.Sport.Soccer Statistics Foundation. Retrieved 16 December 2018.


This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.