Metrika | Random | Monte Carlo | MinMax |
---|---|---|---|
Average Score | 946.8 | 10336.4 | 58.8 |
Maximum Score | 2784 | 15652 | 236 |
Minimum Score | 300 | 2180 | 4 |
Average Moves | 126.37 | 735.0 | 1000.0 |
Maximum Tile | 256 | 1024 | 32 |
Wins | 0 | 0 | 0 |
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
/* | |
* | |
Příklady SQL dotazů pro databázi RVVI | |
1. příklad: Vypište instituce se sídlem v městských částech Ostravy. | |
*/ | |
select * |
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
select z_author.name, count(zaa.aid) | |
from z_author | |
join dbo.z_article_author zaa on z_author.rid = zaa.rid | |
group by z_author.name | |
having count(zaa.aid) > 600 | |
select * from z_journal | |
select * from z_article |
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
select z_author.name, count(zaa.aid) | |
from z_author | |
join dbo.z_article_author zaa on z_author.rid = zaa.rid | |
group by z_author.name | |
having count(zaa.aid) > 600 | |
select * from z_journal | |
select * from z_article |
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
-- DD S15 L01 | |
SELECT username || ':' || email AS user_with_email | |
FROM USERS; | |
SELECT 'Category' || concat(' of ', name) as category_name | |
FROM CATEGORIES; | |
SELECT DISTINCT lastname | |
FROM CUSTOMERS; |
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
import React, { createContext, useContext, useState } from 'react' | |
type ModalType = 'trailer' | |
type UseModal = () => { | |
openModals: ModalType[] | |
openModal: (id: ModalType) => void | |
closeModal: (id: ModalType) => void | |
isModalOpen: (id: ModalType) => boolean | |
}; |
TRUNC(date)
- sets time to 00:00, start of day
to_date(’2005−05−24 22:53:30’, ’YYYY−MM−DD HH24:MI:SS’)
- convert str to date
to_char(any)
- convert some value to char/str
EXECUTE IMMEDIATE 'drop table kekw'
- execute in dynamic sql (don't include ;)
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 <iostream> | |
#include <vector> | |
#include <forward_list> | |
#include <utility> | |
using namespace std; | |
template <typename T> | |
using TableEntry = forward_list<pair<int, T>>; |
NewerOlder