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
    
  
  
    
  | let interval = 500; | |
| [...document.getElementsByClassName("d-like__icon")].forEach((item, index) => { | |
| setTimeout(() => { | |
| item.click() | |
| console.log(`click happend with inddex ${index}`) | |
| }, interval * index) | |
| }) | 
  
    
      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
    
  
  
    
  | [Display] | |
| Mode=Fullscreen | |
| FullscreenMode=Fullscreen | |
| FullscreenRefresh=0 | |
| FullscreenWidth=2560 | |
| FullscreenHeight=1440 | |
| WindowedWidth=2560 | |
| WindowedHeight=1421 | |
| Maximized=0 | |
| RenderQuality=1.000000 | 
  
    
      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 io.ktor.client.* | |
| import io.ktor.client.engine.cio.* | |
| import io.ktor.client.request.* | |
| import io.ktor.http.* | |
| import kotlinx.coroutines.delay | |
| import kotlinx.coroutines.runBlocking | |
| import java.net.URL | |
| val client = HttpClient(CIO) {} | 
  
    
      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
    
  
  
    
  | data class ShittyChar(val char: Char, val pos: Int) | |
| fun main() { | |
| val symbols = mutableListOf( | |
| ShittyChar('a', 0), | |
| ShittyChar('A', 3), | |
| ShittyChar('b', 0), | |
| ShittyChar('A', 1), | |
| ShittyChar('B', 0), | |
| ShittyChar('A', 2), | 
  
    
      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
    
  
  
    
  | data class ShittyChar(val char: Char, val pos: Int) | |
| fun main() { | |
| val symbols = mutableListOf( | |
| ShittyChar('a', 0), | |
| ShittyChar('A', 3), | |
| ShittyChar('b', 0), | |
| ShittyChar('A', 1), | |
| ShittyChar('B', 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
    
  
  
    
  | data class TreeNode(val value: Int, var left: TreeNode? = null, var right: TreeNode? = null) | |
| fun main() { | |
| val root: TreeNode = initBSTree() | |
| val isBST: Boolean = isBST(root, Int.MIN_VALUE, Int.MAX_VALUE) | |
| println(isBST) | |
| } | |
  
    
      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
    
  
  
    
  | val numbers = listOf(1, 2, 4, 5, 3, 6, 8, 7) | |
| var max: Int | |
| var i: Int | |
| when(numbers.size % 2 != 0) { | |
| true -> { | |
| max = numbers[0] | |
| i = 1 | |
| } | 
  
    
      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 kotlin.math.sqrt | |
| fun main() { | |
| val number = sqrt(17f).toInt() | |
| var isPrime = true | |
| for(i in 3 .. number step 2) { | |
| if(number % i == 0) { | |
| isPrime = false | |
| } | 
  
    
      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
    
  
  
    
  | ^[а-я]*[А-Я]{1}[а-я]*$ | 
  
    
      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
    
  
  
    
              Show hidden characters
| [ | |
| { | |
| "command": "lsp_hover", | |
| "keys": [ | |
| "alt+enter" | |
| ], | |
| "context": [ | |
| { | |
| "key": "lsp.session_with_capability", | |
| "operator": "equal", | 
NewerOlder