I hereby claim:
- I am uroybd on github.
- I am uroybd (https://keybase.io/uroybd) on keybase.
- I have a public key ASDAvqxhvhTXcjkzLfpaldu_T9EmLDU80ej4KEkZY2MyQAo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| var bengaliUnitRegex = /([অ-হড়-য়](্[অ-হড়-য়])+|[অ-হড়-য়]্|[অ-হড়-য়])[া-ৌ]*[ঁঃং]*|ৎ|[০-৯]| /g; | |
| // You can match with str.mathc(rg) and it will yield units as array. Example: | |
| var testText = "আদর্শলিপি"; | |
| testText.match(bengaliUnitRegex); | |
| // > ["আ", "দ", "র্শ", "লি", "পি"] |
| class Case: | |
| """A Class to simulate case behavior in a more compact way. | |
| Optionaly, default value and a conditional function can be passed. | |
| cases and **kwargs are for flexibility since you can't have nothing | |
| but string keys in kwargs. They both get combined in a single switch. | |
| Return value for switches can be either a value or callable. | |
| Stupid thingy, I know right! :D |
| import pandas as pd | |
| def check_equal(lst): | |
| if lst[0] != " ": | |
| return lst[1:] == lst[:-1] | |
| else: | |
| return False | |
| def if_win(board): | |
| for i in range(3): |
| import csv | |
| from requests import post | |
| from functools import reduce | |
| from bs4 import BeautifulSoup | |
| def soup_to_dict(dt): | |
| """Job html soup to dictionary""" | |
| main_site = 'http://jobs.bdjobs.com/' | |
| data_dict = {}; |
| from copy import deepcopy | |
| # Datastructure: [{'r': int, 'c': int, 'd': boolean, 'v': int, 'p': vecotor of int}.....] | |
| def related(case, unit, data): | |
| grider = [[1,2,3], [4,5,6], [7,8,9]] | |
| for g in grider: | |
| if unit['c'] in g: | |
| cols = g | |
| if unit['r'] in g: |
| def verdict(P1,P2,C1,C2,M,N): | |
| if (M + N) % 2 == 0: | |
| v = 'PAR' | |
| else: | |
| v = 'IMPAR' | |
| if C1 == v: | |
| return P1 | |
| else: | |
| return P2 |
| from itertools import combinations | |
| def ifTri (a, b, c): | |
| if a + b > c and b + c > a and c + a > b: | |
| return True | |
| else: | |
| return False | |
| inp = input().split(" ") | |
| pool = [] |
| def get_input(): | |
| inp = float(input()) | |
| if inp > 10 or inp < 0: | |
| print("nota invalida") | |
| return get_input() | |
| else: | |
| return inp | |
| def calculate(): | |
| a = get_input() |
| #include <stdio.h> | |
| int main() | |
| { | |
| int r, c; | |
| float n, s; | |
| do{ | |
| c=0; | |
| s=0.0; | |
| while(c<2) | |
| { |