Skip to content

Instantly share code, notes, and snippets.

View KyntsevichVova's full-sized avatar

Vladimir Kuntsevich KyntsevichVova

View GitHub Profile
@KyntsevichVova
KyntsevichVova / schema.sql
Last active November 27, 2019 15:44
dbdiagram.io description
Table locale {
locale_id int [pk, increment]
code varchar(10)
}
Table level_con {
level_id int [pk, increment]
level_type varchar(10)
}

This project was created as SaM-Solutions internship project.

Project goal

The goal of this project is to create web application built with Spring Boot 2 and ReactJS, using REST API. The project provides a place to store questions for Java interviews. Questions can be filtered by interview level (e.g. Junior). Question repository supports CRUD queries.

Technologies

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.1.9.RELEASE</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
#include <stdio.h>
#include <sys/io.h>
#include <errno.h>
#include <stdlib.h>
#include <string.h>
#include <stdbool.h>
#include <values.h>
This file has been truncated, but you can view the full file.
/*
Version: 2013.04.26
Date: 2013-04-26 03:15:01
*/
/*
* ���� ���� Version � Date ���� ����������� ���������� �� ������� ���� - �����
* ����� ������� ���������� ������ ����� pci.ids � http://pci-ids.ucw.cz/v2.2/pci.ids
* � ��� ������ idsparser.jar ������ ������������� ����������� *.h-�����.
* ��������� ���������� - � ����� README.
*/
#include <bits/stdc++.h>
using namespace std;
class BigInteger {
int sign;
std::vector<int8_t> numeric;
public:
BigInteger() : sign(1), numeric() {}
for (let test = 0; test < 50; test++) {
let n = 10;
let dist = new Array<Array<number>>(n);
for (let i = 0; i < n; i++) {
dist[i] = new Array<number>(n);
for (let j = 0; j < n; j++) {
dist[i][j] = 1000000;
}
dist[i][i] = 0;
}
'use strict';
import fs = require('fs');
const keywords: Array<string> = [
"break",
"case",
"catch",
"class",
"const",
#include <bits/stdc++.h>
using namespace std;
template<typename T>
struct segtree { // [l; r)
int n;
vector<T> t;
vector<T> lazy;
#include <bits/stdc++.h>
using namespace std;
int rnd() {
int x = rand() << 16;
x ^= rand();
return x;
}