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
| 1. install ipfs desktop: https://github.com/ipfs/ipfs-desktop/releases | |
| 2. open ipfs-desktop and visit http://localhost:8080/ipns/3.jetbra.in in browser | |
| 2.1 or http://localhost:8080/ipfs/bafybeih65no5dklpqfe346wyeiak6wzemv5d7z2ya7nssdgwdz4xrmdu6i | |
| 1. use shadon search for 'Location: https://account.jetbrains.com/fls-auth' to find a active server |
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
| //Complex.cpp | |
| #include <iostream> | |
| #include "Complex.h" | |
| using std::cout; | |
| using std::endl; | |
| /** | |
| * Creates a new Complex with default values for real and imaginary |
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
| <snippet> | |
| <content><![CDATA[ | |
| <!-- begin $1 --> | |
| <div class="$1"> | |
| $2 | |
| </div> | |
| <!-- end $1 --> | |
| ]]></content> | |
| <!-- Optional: Set a tabTrigger to define how to trigger the snippet --> | |
| <tabTrigger>di</tabTrigger> |
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
| def parent(i): | |
| return i/2 | |
| def left(i): | |
| return 2*i | |
| def right(i): | |
| return (2*i + 1) | |
| class Heap: |