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
# passes https://stepik.org/lesson/9582/step/8?unit=1810 | |
(n,m) = tuple([int(x) for x in input().split()]) | |
e = list() | |
for i in range(n): | |
e.append([float(x) for x in input().split()]) | |
order = list() |
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
#!/bin/sh | |
# source: https://phoenixnap.com/kb/fedora-nvidia-drivers | |
sudo dnf install https://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-$(rpm -E %fedora).noarch.rpm -y | |
sudo dnf install https://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-$(rpm -E %fedora).noarch.rpm -y | |
sudo dnf update --refresh | |
sudo dnf update -x kernel-* -y |
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
#!/bin/sh | |
# CONNECT TO THE INTERNET AND START THIS SCRIPT | |
# 0. BASIC SETTINGS | |
# | |
# | |
sudo dnf upgrade -y |