Create new filters and create new labels.
label: gh-pull-request
| version: "3" | |
| services: | |
| jekyll: | |
| image: jekyll/jekyll:latest | |
| command: jekyll serve --watch --force_polling | |
| ports: | |
| - 4000:4000 | |
| volumes: | |
| - .:/srv/jekyll |
Create new filters and create new labels.
label: gh-pull-request
| using System; | |
| class Solution { | |
| public int solution(int X, int Y, int D) { | |
| var distance = (double)(Y - X); | |
| return Math.Ceiling(distance / (double)D); | |
| } | |
| } |
| [{"id":"1","name":"Page Type 1","created":"2010-04-25 15:06:13","updated":"2010-04-25 15:06:13"}, | |
| {"id":"2","name":"Page Type 2","created":"2010-04-25 15:06:13","updated":"2010-04-25 15:06:13"}] |
| SET STATISTICS TIME ON; | |
| GO | |
| INSERT INTO dbo.AnonymousNames | |
| ( id, firstname, lastname ) | |
| VALUES ( 1, -- id - int | |
| N'John', -- firstname - nvarchar(50) | |
| N'Doe' -- lastname - nvarchar(50) | |
| ) | |
| GO |
| INSERT INTO table (col1, col2) | |
| VALUES | |
| (1, 'Record 1'), | |
| (2, 'Record 2'); |
| USE SomeDatabase | |
| GO | |
| INSERT INTO SomeTable (Col1, Col2, Col3) VALUES (1, 'John', 'Doe'); | |
| INSERT INTO SomeTable (Col1, Col2, Col3) VALUES (2, 'Jane', 'Doe'); | |
| INSERT INTO SomeTable (Col1, Col2, Col3) VALUES (3, 'Jean', 'Dupont'); | |
| INSERT INTO SomeTable (Col1, Col2, Col3) VALUES (4, 'Kwasi', 'Mensa'); | |
| GO |