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
import java.util.ArrayDeque; | |
import java.util.Deque; | |
import java.util.Iterator; | |
import java.util.ArrayList; | |
import java.util.Scanner; | |
public class Main { | |
public static int[] test(int anzahl,boolean[] pattern) { | |
Deque<Integer> karten=new ArrayDeque<Integer>(); | |
int[] ergebnis=new int[anzahl]; |
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
24 - The Longest Day (Armin Van Buuren Remix) [2004] | |
2HD - Sunflakes (Vincent De Moor Remix) [1998] | |
2Trance & Moonforce - Sunset On Ibiza (Original Mix) [2007] | |
3 Voices - Nightflight (Future Mix) [1994] | |
4 Strings - All Around The World | |
4 Strings - Catch A Fall (Club Mix) | |
4 Strings - Daytime (Gizeh Remix) [2000] | |
4 Strings - Desire (DJ 4 Strings Remix) | |
4 Strings - Desire (Original Mix) | |
4 Strings - Diving (Hiver & Hammer's Different Gear Remix) [2002] |
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
use std::fs::File; | |
use std::io::prelude::*; | |
const BUF_SIZE: usize = 65536; | |
fn process_bytes(bytes: Vec<Box<[u8; BUF_SIZE]>>) { | |
let mut out_buf = [0_u8; BUF_SIZE]; | |
for i in 0..BUF_SIZE { | |
let sum: usize = bytes.iter().map(|s| s[i] as usize).sum(); | |
let result = (sum as f32 / bytes.len() as f32).round(); |
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
https://drive.google.com/open?id=1ZEXMQSeb5c6mOQTngDeNNdOZ5e7HH1Xw |
This file has been truncated, but you can view the full file.
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
[ | |
{ | |
"username": "Arkhys", | |
"years": [ | |
2019.695890410959, | |
2019.6986301369864 | |
], | |
"ratings": [ | |
6.04, | |
6.778333333333332 |
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
{ | |
"people": [ | |
{ | |
"names": [ | |
"grinning" | |
], | |
"surrogates": "😀", | |
"unicodeVersion": 6.1 | |
}, | |
{ |
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
#![allow(clippy::needless_range_loop)] | |
trait MyItertools: Iterator + Sized { | |
/// This function will yield the iterator's next item, but only if that item is the only item | |
fn into_single(mut self) -> Option<Self::Item> { | |
let first_item = self.next()?; | |
if self.next().is_some() { | |
None | |
} else { | |
Some(first_item) |
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
#![allow(clippy::or_fun_call)] | |
// deliberately not copy with the intention to prevent accidental copies and confusion | |
#[derive(Clone, Debug)] | |
pub struct Arguments<'a> { | |
pub args: &'a str, | |
} | |
impl<'a> Arguments<'a> { | |
/// Pop a whitespace-separated word from the front of the arguments. |
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
We use cell 1 and 2 as temp cells for copying or building values | |
+++++++++++++++++++++++++++ 4 to cell 0 | |
>>+++++++++[>+++++<-]>+ 46 (ASCII dot) to cell 3; cell 2 temp; =3 | |
<++++++++[>>++++++++<<-]>>+ 97 (ASCII 'A') to cell 4; cell 2 temp; =4 | |
>++++++++++ 10 (ASCII newline) to cell 5 | |
<<<<<[>+>>.<<<-]>[<+>-] print cell 3 {cell 0} times; cell 1 temp | |
>>>. print cell 4 | |
<<<<[>+>>.<<<-]>[<+>-] print cell 3 {cell 0} times; cell 1 temp |