Git is a free and open source distributed version control system designed to handle everything from small to very large projects with speed and efficiency.
– The Git website
Choose one of the following options.
Instituto Federal de Educação, Ciência e Tecnologia do Tocantins (IFTO/TO) | |
- Araguatins | |
- Gurupi | |
- Palmas | |
- Paraíso do Tocantins | |
- Porto Nacional | |
Instituto Federal de Educação, Ciência e Tecnologia de Mato Grosso (IFMT/MT) | |
- Barra do Garças | |
- Bela Vista/Cuiabá |
#!/usr/bin/python | |
#-*- coding: utf-8 -*- | |
# The problem: | |
# Given a string containing just the characters '(', ')', '{', '}', '[' and ']', determine if the input string is valid. | |
# An input string is valid if: | |
# 1. Open brackets must be closed by the same type of brackets. | |
# 2. Open brackets must be closed in the correct order. | |
# Note that an empty string is also considered valid. | |
# See more: https://leetcode.com/problems/valid-parentheses/ | |
# |
Git is a free and open source distributed version control system designed to handle everything from small to very large projects with speed and efficiency.
– The Git website
Choose one of the following options.
Lista de comunidades de software e iniciativas voltadas para diversidade no mercado de TI (todos os níveis)
# Run with: https://www.programiz.com/python-programming/online-compiler/ | |
# 4 Easy Ways To Beat “Fizz Buzz” In Python: https://towardsdatascience.com/4-easy-ways-to-beat-fizz-buzz-in-python-cfa2dcb9b813 | |
# Online Python compiler (interpreter) to run Python online. | |
# Write Python 3 code in this online editor and run it. | |
import unittest | |
def fizz_buzz(numbers: list, words: dict): | |
assert 3 in words.keys(), 'expects key 3 in letters' | |
assert 5 in words.keys(), 'expects key 5 in letters' | |
assert len(numbers) > 0, 'expects a non-empty list' |
import argparse | |
import concurrent.futures | |
import json | |
import operator | |
import re | |
from datadog import api, initialize | |
options = { | |
"api_key": "foo", |