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
function FindProxyForURL(url, host) { | |
const domains = [ | |
'noc.bmstu.ru', | |
'ais.bmstu.ru', | |
'client.bmstu.ru', | |
'val.bmstu.ru', | |
'library.bmstu.ru', | |
'bmstu.press', | |
'eu.bmstu.ru', | |
'rasp.eudev.bmstu.ru', |
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
class Point: | |
def __init__(self, x: float, y: float): | |
self.x = x | |
self.y = y | |
def __sub__(self, other: 'Point') -> 'Point': | |
return Point(self.x - other.x, self.y - other.y) | |
def skew_product(a: Point, b: Point) -> float: |