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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Document</title> | |
</script> | |
</head> | |
<body> | |
<script> |
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
#include <array> | |
#include <bitset> | |
#include <fstream> | |
#include <iomanip> | |
#include <utility> | |
static constexpr std::size_t NUMAR_MAXIM_VARFURI = 100; | |
template <std::size_t N> | |
class graf_t { |
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
#include <bitset> | |
#include <fstream> | |
#include <queue> | |
#include <utility> | |
#include <vector> | |
static constexpr auto NUMAR_MAXIM_VARFURI = 1000; | |
using Varfuri = std::vector<int>; | |
using Graf = std::vector<std::vector<int>>; |
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
#ifndef TEO_GRAF_HXX | |
#define TEO_GRAF_HXX | |
#include <sstream> | |
#include <stdexcept> | |
template <int N> | |
class Graf { | |
public: | |
constexpr Graf() |
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
#include <algorithm> | |
#include <array> | |
#include <iostream> | |
#include <string> | |
#include <vector> | |
class DataStructure { | |
public: | |
bool insert(std::string data) noexcept { | |
auto entry = find(data, [](const Entry& e) { |
This file has been truncated, but you can view the full file.
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
{"context":{"logLevel":20,"namespace":"Importer","package":"ts-jest","version":"27.0.3"},"message":"creating Importer singleton","sequence":1,"time":"2021-06-10T09:01:36.992Z"} | |
{"context":{"actualVersion":"27.0.4","expectedVersion":">=27.0.0 <28","logLevel":20,"namespace":"versions","package":"ts-jest","version":"27.0.3"},"message":"checking version of jest: OK","sequence":2,"time":"2021-06-10T09:01:37.036Z"} | |
{"context":{"logLevel":20,"namespace":"ts-jest-transformer","package":"ts-jest","version":"27.0.3"},"message":"created new transformer","sequence":3,"time":"2021-06-10T09:01:37.036Z"} | |
{"context":{"logLevel":20,"namespace":"ts-jest-transformer","package":"ts-jest","version":"27.0.3"},"message":"created new transformer","sequence":4,"time":"2021-06-10T09:01:37.056Z"} | |
{"context":{"logLevel":30,"namespace":"ts-jest-transformer","package":"ts-jest","version":"27.0.3"},"message":"no matching config-set found, creating a new one","sequence":5,"time":"2021-06-10T09:01:38.558Z"} | |
{"context":{"config":{"automock":f |
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
SQL 7 hrs 44 mins ███████████████▓░░░░ 64.7% | |
Makefile 2 hrs 15 mins ██████▓░░░░░░░░░░░░░ 18.9% | |
TypeScript 39 mins ████░░░░░░░░░░░░░░░░ 5.5% | |
Other 26 mins ███▓░░░░░░░░░░░░░░░░ 3.6% |
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
cod | județ | |
---|---|---|
AB | Alba | |
AG | Argeș | |
AR | Arad | |
B | București | |
BC | Bacău | |
BH | Bihor | |
BN | Bistrița-Năsăud | |
BR | Brăila | |
BT | Botoșani |
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
#ifndef TEO_FORWARD_LIST_HXX_ | |
#define TEO_FORWARD_LIST_HXX_ | |
#include <algorithm> | |
#include <cstddef> | |
#include <cstring> | |
#include <iterator> | |
#include <numeric> | |
#include <stdexcept> | |
#include <type_traits> |
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
interface GridProps { | |
/** | |
* The number of columns the grid should have | |
*/ | |
readonly columns: number | |
/** | |
* The number of rows the grid should have | |
*/ | |
readonly rows: number | |
/** |
NewerOlder