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
| def multiply(x, y): | |
| n = len(str(x)) | |
| if n == 1: | |
| return x * y | |
| nby2 = n // 2 | |
| ten_to_nby2 = 10 ** nby2 | |
| a = x // ten_to_nby2 | |
| b = x % ten_to_nby2 | |
| c = y // ten_to_nby2 |
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
| from selenium import webdriver | |
| from selenium.webdriver.chrome.options import Options | |
| from bs4 import BeautifulSoup | |
| import pandas | |
| from random import randint | |
| from time import sleep | |
| options = Options() |
Inspired by dannyfritz/commit-message-emoji
See also gitmoji.
| Commit type | Emoji |
|---|---|
| Initial commit | 🎉 :tada: |
| Version tag | 🔖 :bookmark: |
| New feature | ✨ :sparkles: |
| Bugfix | 🐛 :bug: |
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
| import javafx.application.Application; | |
| import javafx.collections.*; | |
| import javafx.geometry.*; | |
| import javafx.scene.Scene; | |
| import javafx.scene.control.*; | |
| import javafx.scene.image.*; | |
| import javafx.scene.input.*; | |
| import javafx.scene.layout.VBox; | |
| import javafx.stage.Stage; |