This file contains 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
Java 6 mins █████████████▉░░░░░░░ 66.6% | |
Groovy 2 mins █████░░░░░░░░░░░░░░░░ 24.2% | |
Kotlin 0 secs █▊░░░░░░░░░░░░░░░░░░░ 8.9% | |
Git Config 0 secs ░░░░░░░░░░░░░░░░░░░░░ 0.3% |
This file contains 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
sudo apt purge gnome-mines gnome-sudoku gnome-todo gnome-todo-common gnome-tour gnome-weather gnome-sushi gnome-photos gnome-clocks gnome-contacts gnome-mahjongg gnome-characters gnome-video-effects gnome-maps gnome-bluetooth pitivi evolution gnome-calendar libreoffice-base-core libreoffice-common libreoffice-gnome libreoffice-core libreoffice-impress libreoffice-gtk3 aisleriot quadrapassel evolution rhythmbox brasero brasero-common brasero-cdrkit:amd64 libreoffice-calc libreoffice-help-en-us libreoffice-writer libreoffice-draw libreoffice-help-common libreoffice-style-colibre libreoffice-style-elementary libreoffice-style-yaru gnome-sound-recorder |
This file contains 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
const total = 35852 // Цена всего | |
const night = total / 4 // Цена одной ночи | |
const withoutGosha = night / 3 // Цена для 1 участника, при условии что участников 3 | |
const withGosha = night / 4 // Цена для 1 участника, при условии что участников 4 | |
console.log( "Gosha: " + withGosha * 2 ) // Сколько Георгий должен за 2 ночи | |
console.log( "Other: " + ((withoutGosha * 2) + (withGosha * 2)) ) // Сколько должен каждый другой участник |