A | B | A+B |
---|---|---|
1.200.000 | 350.000 | 1.550.000 |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Syandal` jepit</title> | |
</head> | |
<body><p>2</p></body> | |
</html> |
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
23 | |
12 | |
2 | |
34 | |
56 | |
45 | |
42 | |
50 | |
22 | |
14 |
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
// token (e.g. integer) sparated by whitespace | |
mod input { | |
use std::io::{self, Read}; | |
pub struct Mem { | |
buf: Vec<u8>, | |
cur: usize, | |
} | |
impl Mem { | |
pub fn new() -> Self { | |
let mut buf = Vec::new(); |
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
macro_rules! fst { | |
($exp:expr) => ({ | |
let (x, ..) = $exp; | |
x | |
}) | |
} |
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
// License | |
// | |
// Dual-licensed to be compatible with the Rust project. | |
// | |
// Licensed under the Apache License, Version 2.0 | |
// http://www.apache.org/licenses/LICENSE-2.0 or the MIT license | |
// http://opensource.org/licenses/MIT, at your option. This file may not | |
// be copied, modified, or distributed except according to those terms. | |
// | |
// From: https://github.com/bluss/maplit |
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
00 01 10 11 | |
00000 NUL Spc @ ` | |
00001 SOH ! A a | |
00010 STX " B b | |
00011 ETX # C c | |
00100 EOT $ D d | |
00101 ENQ % E e | |
00110 ACK & F f | |
00111 BEL ' G g | |
01000 BS ( H h |
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 NetSocket = require("net").Socket; | |
var IrcSocket = require("irc-socket"); | |
var parse = require("irc-message").parse; | |
class Bot { | |
constructor(config) { | |
var netSocket = new NetSocket(); | |
var opt = { | |
socket: netSocket, | |
port: 6667 |