- Objectives
- Content. Lectures, tasks, the final project
- Prerequisites
- Task 0. Survey. Online products exposure. Career focus
This file contains 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
const Benchmark = require('benchmark') | |
const start = 2 | |
const end = 5 | |
const suite = new Benchmark.Suite | |
for (var i = start; i <= end; i++) { | |
const n = Math.pow(10, i) |
This file contains 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
data class TreeNode( | |
val value: Char, | |
val left: TreeNode? = null, | |
val right: TreeNode? = null | |
) | |
val tree = TreeNode( | |
'a', | |
TreeNode('b', | |
TreeNode('c'), |
This file contains 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
// Based on https://github.com/cube-js/cube.js/blob/master/examples/hacktoberfest/dashboard/src/Card/LanguageCard.js | |
// Cube.js Query | |
{ | |
measures: [ 'Repos.count' ], | |
dimensions: [ 'Repos.language' ], | |
} | |
// Cube.js GraphQL | |
{ |
OlderNewer