I hereby claim:
- I am brendantang on github.
- I am brendantang (https://keybase.io/brendantang) on keybase.
- I have a public key ASBOIvn7NcbqFvykxBcAk8uA9KKoMl-izx6zzCxtIv_w1go
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| Democratic Party Platform | |
| TABLE OF CONTENTS | |
| DEMOCRATIC NATIONAL CONVENTION LAND ACKNOWLEDGEMENT 4 PREAMBLE 5 PROTECTING AMERICANS AND RECOVERING FROM THE COVID-19 PANDEMIC 8 | |
| BUILDING A STRONGER, FAIRER ECONOMY 12 Protecting Workers and Families and Creating Millions of Jobs Across America 14 Raising Wages and Promoting Workers’ Rights 14 Enacting Robust Work-Family Policies 15 Investing in the Engines of Job Creation 15 Building A Fair System of International Trade for Our Workers 18 Putting Homeownership in Reach and Guaranteeing Safe Housing for Every American 19 Leveling the Economic Playing Field 20 Reforming the Tax Code to Benefit Working Families 20 Curbing Wall Street Abuses 21 Ending Poverty 21 Protecting Consumer Rights and Privacy 22 Tackling Runaway Corporate Concentration 23 Guaranteeing a Secure and Dignified Retirement 23 | |
| ACHIEVING UNIVERSAL, AFFORDABLE, QUALITY HEALTH CARE 24 Securing Universal Health Care Through a Public Option 25 Bringing Down Drug Prices and Taking on the Pharmaceutical I |
| class Array | |
| def bubble_sort | |
| (self.length - 1).times do | |
| self.each_with_index do |num, index| | |
| if self[index + 1] != nil && num > self[index + 1] then | |
| self[index + 1], self[index] = num, self[index + 1] | |
| end | |
| end | |
| end |