Virus | Source | Animal |
---|---|---|
SARS (2003) | China | bat / pig |
MERS (2012) | Middle-East | camel |
H1N1 (2009) | USA (N Carolina) -> Mexico | pig (aka swine) |
Ebola (2014) | Republic of Congo | bats, chimpanzees, gorillas, baboons |
Zika (1947) | Uganda | mosquito |
Covid-19 (2019) | China | bat / snake |
This file contains 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<!--<meta name="viewport" content="width=device-width, initial-scale=1.0">--> | |
<title>virus</title> | |
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css"> | |
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Lato"> | |
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"> |
This file contains 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
import heapq | |
import os | |
class HeapNode: | |
def __init__(self, char, freq): | |
self.char = char | |
self.freq = freq | |
self.left = None | |
self.right = None |
This file contains 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
tup1 = (1, 2, [3, 4, 5]) | |
print(tup1) | |
print("Tuples are immutable, but their mutable constituents, if any, are mutable!") | |
tup1[2][2] = 'x' | |
print(tup1) | |
# (1, 2, [3, 4, 'x']) |
This file contains 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<!--<meta name="viewport" content="width=device-width, initial-scale=1.0">--> | |
<title>ENCO Literary Challenge</title> | |
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css"> | |
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Lato"> | |
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"> |
This file contains 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>replaceRefactorSaga</title> | |
<link rel="stylesheet" href="https://stackedit.io/style.css" /> | |
</head> |
This file contains 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>importantTopics-kgashok</title> | |
<link rel="stylesheet" href="https://stackedit.io/style.css" /> | |
</head> |
NewerOlder