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
<config> | |
<!-- Client Control --> | |
<fold-anon v='true'/> | |
<!-- Folding Slot Configuration --> | |
<gpu v='true'/> | |
<!-- Slot Control --> | |
<power v='full'/> |




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
var MoneyBlesser9000 = { | |
BlessMe: function() { | |
let uglyFallFees = document.getElementById('fee_table_201930'); | |
let uglyWinterFees = document.getElementById('fee_table_202010'); | |
MoneyBlesser9000.DougFordify(uglyFallFees); | |
MoneyBlesser9000.DougFordify(uglyWinterFees); | |
}, | |
DougFordify: function(nasty) { | |
for (let i = 1, sugma; sugma = nasty.rows[i]; i++) { | |
let ligma = sugma.cells[5].firstElementChild; |
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
["๐","๐","๐","๐","โบ๏ธ","๐","๐","๐","๐","๐","๐","๐","๐","๐","๐ณ","๐","๐","๐","๐","๐","๐ฃ","๐ข","๐","๐ญ","๐ช","๐ฅ","๐ฐ","๐ ","๐","๐ฉ","๐ซ","๐จ","๐ฑ","๐ ","๐ก","๐ค","๐","๐","๐","๐ท","๐","๐ด","๐ต","๐ฒ","๐","๐ฆ","๐ง","๐","๐ฟ","๐ฎ","๐ฌ","๐","๐","๐ฏ","๐ถ","๐","๐","๐","๐ฒ","๐ณ","๐ฎ","๐ท","๐","๐ถ","๐ฆ","๐ง","๐จ","๐ฉ","๐ด","๐ต","๐ฑ","๐ผ","๐ธ","๐บ","๐ธ","๐ป","๐ฝ","๐ผ","๐","๐ฟ","๐น","๐พ","๐น","๐บ","๐","๐","๐","๐","๐ฝ","๐ฉ","๐ฅ","โจ","๐","๐ซ","๐ฅ","๐ข","๐ฆ","๐ง","๐ค","๐จ","๐","๐","๐","๐ ","๐","๐","๐","๐","๐","โ","โ๏ธ","๐","โ","๐","๐","๐","๐","๐","๐","๐","โ๏ธ","๐","๐ช","๐ถ","๐","๐","๐ซ","๐ช","๐ฌ","๐ญ","๐","๐","๐ฏ","๐","๐ ","๐","๐","๐","๐","๐ ","๐ฐ","๐","๐","๐","๐ฉ","๐","๐","๐","๐","๐ก","๐ ","๐ข","๐","๐","๐","๐","๐ฝ","๐","๐","๐","๐ผ","๐","๐","๐","๐","๐","๐","๐","๐","๐","๐","๐","โค๏ธ","๐","๐","๐","๐","๐","๐","๐","๐","๐","๐","๐","๐ค","๐ฅ","๐ฌ","๐ฃ","๐ญ","๐ถ","๐บ","๐ฑ","๐ญ","๐น","๐ฐ","๐ธ","๐ฏ","๐จ","๐ป","๐ท","๐ฝ","๐ฎ","๐","๐ต","๐","๐ด","๐","๐","๐ผ","๐ง","๐ฆ","๐ค","๐ฅ","๐ฃ","๐","๐","๐ข","๐","๐","๐","๐","๐","๐","๐","๐ ","๐","๐ฌ","๐ณ","๐","๐","๐","๐","๐","๐ ","๐","๐","๐","๐","๐","๐","๐","๐","๐","๐ฒ","๐ก","๐","๐ซ","๐ช","๐","๐","๐ฉ","๐พ","๐","๐ธ","๐ท" |
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
####Last Question#### | |
def counter(str1): | |
a = {} | |
templist = [] | |
templist = str1.split() | |
print(templist) | |
for i in templist: | |
print(i) | |
if i in a: | |
a[i] = a.get(i,0)+1 |
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
''' | |
Dropping this here if anyone finds it useful. | |
PLS nobody talk about efficiency lol | |
''' | |
####Q1#### | |
def both(list1, list2): | |
list_3 = list(set(list1 + list2)) | |
list_4 = [] | |
print(list_3) |