1950 Swedish Ice Hockey Championship
The 1950 Swedish Ice Hockey Championship was the 27th season of the Swedish Ice Hockey Championship, the national championship of Sweden. Djurgardens IF won the championship.
Tournament
Qualification
- Ljusne AIK - Kungliga Hälsinge Flygflottilj F-15 Söderhamn 4:3
- Åkers IF - Liljanshof 3:2
- Piteå IF - Wifsta/Östrand 5:2
- BK Forward - Surahammar 3:2
- IFK Bofors - IK Sturehov 9:4
- Tranås AIF - IFK Norrköping 3:5
- IFK Nyland - Leksand 5:3
- Södertälje IF - Traneberg 6:4
- Hagalunds IS - Karlberg 7:2
- Sundbybergs IK - Årsta SK 5:4
- Mora IK - Ljusne AIK 12:3
First round
- Åkers IF - Södertälje IF 6:3
- IFK Bofors - IFK Nyland 4:0
- Mora IK - Piteå IF 7:5
- IFK Norrköping - BK Forward 5:2
- Hagalund - Sundbyberg 2:3
- IFK Norrköping - Atlas Diesel 3:2
Second round
- AIK - IFK Norrköping (W)
- Hammarby IF - IK Huge 3:1
- IFK Bofors - Djurgårdens IF 4:11
- Forshaga IF - Åkers IF 8:1
- IK Göta - Nacka SK 2:1
- UoIF Matteuspojkarna - Sundbyberg 4:3
- Gävle GIK - Mora IK 4:5
- Södertälje SK - Västerås SK (W)
Quarterfinals
- AIK - Hammarby IF 2:3
- Djurgårdens IF - Forshaga IF (W)
- IK Göta - UoIF Matteuspojkarna 4:2
- Mora IK - Södertälje SK 6:1
Final
- Djurgårdens IF - Mora IK 7:2
gollark: ```pythonimport requestsimport randomimport fileinputdef weighted_choice(choices): total = sum(weight for choice, weight in choices) r = random.uniform(0, total) upto = 0 for choice, weight in choices: if upto + weight >= r: return choice upto += weight assert False, "Shouldn't get here"def get_rhymes(word, extra_params={}): default_params = { "rel_rhy": word, "max": 20, "md": "pf" } return requests.get("https://api.datamuse.com/words/", params={**default_params, **extra_params}).json()def get_frequency(word_object): for tag in word_object["tags"]: if tag.startswith("f:"): return float(tag[2:]) return 0def get_rhyme(word, params): options = get_rhymes(word, params) options = list(map(lambda word_object: (word_object["word"], get_frequency(word_object)), options)) if len(options) == 0: return word return weighted_choice(options)last = Nonefor line in fileinput.input(): line = line.replace("\n", "") if last != None: print(line + " " + get_rhyme(last, {})) last = None else: last = line.replace(".", "").split(" ")[-1] print(line)```
gollark: My automated rap generatorIs far superior to puny human rappers laterIt is backed by the entire resourcesOf this random online dictionary and word relation query API resource isTechnically it still relies on human interventionTo produce the input text to turn into rap intentionAnd due to the limitations of current natural language processingIt is unable to significantly transform the input text reprocessingThis is because spoken human languagesAre mostly not designed with machine-parseability language isor ease of understandingas major goals expandingand were we using better-designed languages, automated rapwould surely be much easier. app
gollark: Does that even rhyme?Um... BLIME!
gollark: This is totally a rapA rap is what it is chap
gollark: I made an automatic rap generation programIt works by appending an unrelated word which rhymes with the end of the previous line amTo every second lineThis totally counts as rap mineVery valid rap indeedI win esolangs now speed
External links
- Season on hockeyarchives.info
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.