1986 Ykkönen – Finnish League Division 1

League table for teams participating in Ykkönen, the second tier of the Finnish Soccer League system, in 1986.

Finnish League Division 1
Season1986
ChampionsReipas Lahti
PromotedReipas Lahti
RelegatedJaro Pietarsaari
KajHa Kajaani
PK-37 Iisalmi
← 1985
1987 →

League table

Pos Team Pld W D L GF GA GD Pts
1 Reipas Lahti 22 13 7 2 40 20 +20 33
2 KontU Helsinki 22 9 10 3 27 20 +7 28
3 TPV Tampere 22 10 8 4 52 34 +18 28
4 Elo Kuopio 22 7 9 6 28 36 8 23
5 KPV Kokkola 22 5 12 5 22 20 +2 22
6 LauTP Lappeenranta 22 8 6 8 34 34 0 22
7 FinnPa Helsinki 22 7 6 9 32 32 0 20
8 Huima Äänekoski 22 6 8 8 34 36 2 20
9 MyPa Anjalankoski 22 7 5 10 35 37 2 19
10 Jaro Pietarsaari 22 5 9 8 23 23 0 19
11 KajHa Kajaani 22 7 3 12 32 43 11 17
12 PK-37 Iisalmi 22 4 5 13 24 48 24 13
Source:

[1]

Promotion/Relegation Playoff

  • KontU Helsinki - KePS Kemi 3-4
  • KePS Kemi - KontU Helsinki 3-2

KePS Kemi stayed in Premier Division.

gollark: ```python#!/usr/bin/env python3import argparseimport subprocessimport randomimport stringparser = argparse.ArgumentParser(description="Compile a WHY program using WHYJIT.")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 randomword(length): letters = string.ascii_lowercase return ''.join(random.choice(letters) for i in range(length))def which(program): proc = subprocess.run(["which", program], stdout=subprocess.PIPE) if proc.returncode == 0: return proc.stdout.replace(b"\n", b"") else: return Nonedef find_C_compiler(): compilers = ["gcc", "clang", "tcc", "cc"] for compiler in compilers: path = which(compiler) if path != None: return pathdef build_output(code, mx): C_code = f"""#define QUITELONG long long intconst QUITELONG max = {mx};int main() {{ volatile QUITELONG i = 0; // disable some "optimizations" that RUIN OUR BEAUTIFUL CODE! while (i < max) {{ i++; }} {code}}} """ heredoc = randomword(100) devnull = "2>/dev/null" shell_script = f"""#!/bin/shTMP1=/tmp/ignore-meTMP2=/tmp/ignore-me-tooTMP3=/tmp/dont-look-here cat << {heredoc} > $TMP1{C_code}{heredoc}sed -e '1,/^exit \$?$/d' "$0" > $TMP3chmod +x $TMP3$TMP3 -x c -o $TMP2 $TMP1chmod +x $TMP2$TMP2exit $?""".encode("utf-8") with open(find_C_compiler(), "rb") as f: return shell_script + f.read()input = args.inputoutput = args.outputwith open(input, "r") as f: contents = f.read() looplen = max(1000, (2 ** -args.optimize) * 1000000000) code = build_output( contents, looplen ) with open(output, "wb") as out: out.write(code)```
gollark: I mean, it uses (y, x) coordinates, if I remember correctly!
gollark: Where n = infinity.
gollark: Which bot? And what is `FALSE`?
gollark: Also, add Rust support!

See also

References

  1. "Finland - List of League Second Level Tables". Heikki Pietarinen for RSSSF. 1986. Retrieved 2012-01-03.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.