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
| import java.util.*; | |
| public class EDTests { | |
| TreapNode root = null; | |
| TreapNode insert(TreapNode root, int key) { | |
| // If root is null, create a new node and return it | |
| if (root == null) | |
| return new TreapNode(key); |
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
| -- phpMyAdmin SQL Dump | |
| -- version 4.7.1 | |
| -- https://www.phpmyadmin.net/ | |
| -- | |
| -- Host: sql2.freemysqlhosting.net | |
| -- Generation Time: 11-Nov-2018 às 20:50 | |
| -- Versão do servidor: 5.5.54-0ubuntu0.12.04.1 | |
| -- PHP Version: 7.0.32-0ubuntu0.16.04.1 | |
| SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; |
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
| /** | |
| * @param array A sorted array of ints to search through. This must be sorted. | |
| * @param key an int to seach the array for | |
| * @param start position where the arrays starts | |
| * @param end position where the array ends | |
| * @return wheter the key exists in the array | |
| */ | |
| public static boolean binarySearchRecursive(int[] array, int key, int start, int end) { | |
| int middle = (start + end) / 2; |
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
| Section "OutputClass" | |
| Identifier "intel" | |
| MatchDriver "i915" | |
| Driver "modesetting" | |
| EndSection | |
| Section "OutputClass" | |
| Identifier "nvidia" | |
| MatchDriver "nvidia-drm" | |
| Driver "nvidia" |