Институт Математики и Компьютерных Наук УрФУ (МатМех)
Институт радиоэлектроники и информационных технологий УрФУ (Радиофак)
| public static <T> Validator<T extends Comparable<T>> positiveValidator(T zeroValue) { | |
| return value -> { | |
| if (zeroValue.compareTo(value) < 0) { | |
| return Optional.empty() | |
| } | |
| else { | |
| rerurn Optional.of(String.format("Value must be positive but was '%s'", value)); | |
| }; | |
| } | |
| package io.su0.universum.util.fsm; | |
| import java.util.Arrays; | |
| import java.util.HashSet; | |
| import java.util.Map; | |
| import java.util.Objects; | |
| import java.util.Optional; | |
| import java.util.concurrent.CompletableFuture; | |
| import java.util.concurrent.ExecutionException; | |
| import java.util.concurrent.Future; |
| #!/usr/bin/env python3 | |
| # Should be in pre-commit file without .py extension | |
| from subprocess import call | |
| import sys | |
| import os.path as path | |
| HOOK_LIST_NAME = "pre-commit.list" |
| method: POST | |
| url: http://ya.ru | |
| params: | |
| some-param: bblabla | |
| headers: | |
| X-Some-Header: balbla blabla vla | |
| body: > | |
| { | |
| "just": "some", | |
| "json": 123, |
| def find_pairs(array, x): | |
| result = [] | |
| array = sorted(set(array)) | |
| first = 0 | |
| last = len(array) - 1 | |
| while True: | |
| first_el = array[first] |
| from collections import Counter | |
| def convert(value): | |
| value = str(value) | |
| cnt = Counter(value) | |
| res = [] | |
| for el in cnt: | |
| res.append(el) |
| "yohedacrstqlkinpmf%gxvz", | |
| "eitusanrmocdlpbvqgfhjxy", | |
| #^^^^^^^^^^ |
| from bs4 import BeautifulSoup | |
| import requests | |
| from urllib.request import urlretrieve | |
| r = requests.get("http://www.slideshare.net/slideshow/embed_code/41339705") | |
| soup = BeautifulSoup(r.content, "html.parser") | |
| slides = soup.find_all("div", class_="slide") |