- I did a bunch of cool stuff on the rad feature that may or may not have included adding a rick roll video.
- Closes
#bug.
- legit stuff of course
| <p style="color: #1d889b;"> | |
| <svg style="height:25px;float:left;margin-right:10px;padding-bottom: 2px;" class="h-6 w-6" | |
| xmlns="http://www.w3.org/2000/svg" fill="#1d889b" viewBox="0 0 256 256"> | |
| <path fill="none" d="M0 0h256v256H0z" /> | |
| <path | |
| d="M176 144H16v40a8 8 0 0 0 8 8h20a24 24 0 0 1 48 0h72a24 24 0 0 1 12-20.8ZM212 192a24 24 0 0 0-36-20.8V120h64v64a8 8 0 0 1-8 8h-20" | |
| opacity=".2" /> | |
| <path d="M176 80h42.6a7.9 7.9 0 0 1 7.4 5l14 35M16 144h160" fill="none" stroke="#1d889b" | |
| stroke-linecap="round" stroke-linejoin="round" stroke-width="16" /> | |
| <circle cx="188" cy="192" r="24" fill="none" stroke="#1d889b" stroke-miterlimit="10" |
| <div style="display:flex; justify-content:flex-end;"> | |
| <div> | |
| $0 <progress max="5000" value="{{ cart.total_price }}"></progress> $50 | |
| <br> | |
| {% if cart.items.size == 0 %} | |
| Add items to your cart to receive free shipping. | |
| {% endif %} | |
| {% if cart.items.size != 0 %} | |
| {% if cart.total_price >= 5000 %} |
| { | |
| "dropdowns" : { | |
| "halo1": { | |
| "name": "Halo 1", | |
| "gameTypes": { | |
| "captureTheFlag": { | |
| "name": "Capture the flag", | |
| "maps": [ | |
| "Blood Gulch", | |
| "Hang Em High", |
| <style> | |
| /* body { | |
| background:#333; | |
| } */ | |
| .austriker-by { | |
| font-family:"Helvetica Neue",sans-serif; | |
| right:0; | |
| bottom:0; | |
| position:fixed; |
| # Problem Statement | |
| Implement an algorithm to print all valid (i.e. properly opened and closed) combinations of n pairs of braces. | |
| ## Example: | |
| Input : 3 | |
| Output : | |
| {{{}}} | |
| {{}{}} | |
| {{}}{} |
| let exampleWeird2DArray = [ | |
| [0, 0], | |
| [99, 42, 92, 53], | |
| [], | |
| [2, 6, 87, 43, 82], | |
| [2], | |
| ] | |
| let MINEFIELD = [ | |
| [null, null, null, null, 'bomb'], |