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
| language: php | |
| php: | |
| - 5.5 | |
| - hhvm | |
| cache: | |
| directories: | |
| - vendor | |
| - $HOME/.composer/cache | |
| install: |
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
| DROP FUNCTION first_week_day; | |
| DELIMITER // | |
| CREATE FUNCTION first_week_day (year INT, month INT, weekday_index INT) | |
| RETURNS VARCHAR(10) | |
| DETERMINISTIC | |
| BEGIN | |
| DECLARE day_number INT DEFAULT 1; | |
| DECLARE date_string VARCHAR(10); | |
| SET date_string = CONCAT(convert(year, char), "-", convert(month, char), "-", convert(day_number, char)); | |
| return date_string; |
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
| # -*- encoding: latin-1 -* | |
| # Importando a biblioteca de matematica | |
| import math | |
| # Importando a biblioteca de aleatoriedade | |
| import random | |
| # Inicialmente, não temos nenhum ponto 'dentro' do circulo | |
| pontos_no_circulo = 0 |
NewerOlder