I hereby claim:
- I am SebbyLaw on github.
- I am sebbylaw (https://keybase.io/sebbylaw) on keybase.
- I have a public key whose fingerprint is 848F 3E5F 7B51 E32B 4B00 438B CCEF C824 896D 0A27
To claim this, I am signing this object:
| import functools | |
| import operator | |
| def is_match(s, o): | |
| if s.raw == o.raw: | |
| return True | |
| if s.raw[::-1] == o.raw: | |
| return True | |
| return False |
| import functools | |
| import operator | |
| with open('input.txt') as f: | |
| inp = f.read() | |
| class Range: | |
| def __init__(self, lower, upper): | |
| self.lower = int(lower) | |
| self.upper = int(upper) |
| with open('input.txt') as f: | |
| raw = f.read() | |
| def row(code, lower=0, upper=127): | |
| if len(code) == 3: return lower | |
| if code[0] == 'F': | |
| return row(code[1:], lower, (lower + upper) // 2) | |
| if code[0] == 'B': | |
| return row(code[1:], (lower + upper) // 2 + 1, upper) |
| 👪|(?:[👨👩]\u200d){1,2}[👦👧](\u200d[👦👧])? |
| import collections | |
| import discord | |
| from discord.ext import commands | |
| from discord.ext.commands.view import StringView | |
| def _suffix_used(suffix, content): | |
| space_index = content.find(' ') | |
| suffix_index = content.find(suffix) |
| import java.util.List; | |
| import java.util.ArrayList; | |
| import java.util.Map; | |
| import java.util.HashMap; | |
| import org.bukkit.Material; | |
| import org.bukkit.inventory.ItemStack; | |
| /* | |
| Will return a new ArrayList, without modifying the original List |
I hereby claim:
To claim this, I am signing this object: