- 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
// 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 | |
{ |
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
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
{ | |
"asd": "123" } |
Вычислительная сложность алгоритма.
Условие: https://goo.gl/forms/taz8uD8eeMvxMDbF3
Подсказка: https://ulearn.me/Course/complexity
Дедлайн: 7 ноября в 17:00
Автор: Игорь Луканин
Быстрая фильтрация метрик.
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
@RestController | |
class GreetingController { | |
val counter = AtomicLong() | |
@GetMapping("/greeting") | |
fun greeting(@RequestParam(value = "name", defaultValue = "World") name: String) = | |
Greeting(counter.incrementAndGet(), "Hello, $name") | |
} |
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
var streamReader = new StreamReader("c:\\file.txt"); | |
try | |
{ | |
Console.Write(streamReader.ReadToEnd()); | |
} | |
finally | |
{ | |
if (streamReader != null) | |
streamReader.Dispose(); | |
} |
Копирайтинг: Катя Широкова
Тестирование: Максим Захаров
Системная аналитика: Юля Закс
Техническое писательство: Юля Шишканова
NewerOlder