Skip to content

Instantly share code, notes, and snippets.

View matty234's full-sized avatar

Matt Brown matty234

  • Institute of Genetics and Cancer, University of Edinburgh
  • Edinburgh, UK, Boston, US and L'Aquila, IT
View GitHub Profile
import requests
from bs4 import BeautifulSoup
headers = {}
url = "https://www.gov.uk/guidance/red-amber-and-green-list-rules-for-entering-england"
req = requests.get(url, headers)
soup = BeautifulSoup(req.content, 'html.parser')

Keybase proof

I hereby claim:

  • I am matty234 on github.
  • I am mattbrown (https://keybase.io/mattbrown) on keybase.
  • I have a public key ASADZfB9_o6dwIPfCE30m-gVdKXl6N3sdOy6_C9QYe4-two

To claim this, I am signing this object:

import java.util.*;
import java.io.*;
public class BestAlphabetty {
public static void main(String... args) throws FileNotFoundException {
Scanner sc = new Scanner(new File("words.txt"));
int[] a = new int[26];
int lc = 0;
for (String line=(sc.hasNextLine())?sc.nextLine():"";