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
| this derivation will be built: | |
| /nix/store/vfv8mzb4fhnr0nl5bysfsxpynqj56638-reproc-14.2.4.drv | |
| building '/nix/store/vfv8mzb4fhnr0nl5bysfsxpynqj56638-reproc-14.2.4.drv'... | |
| Running phase: unpackPhase | |
| unpacking source archive /nix/store/31vdnsd4wslmpz14y2fz1spsyrqsl26w-source | |
| source root is source | |
| Running phase: patchPhase | |
| Running phase: updateAutotoolsGnuConfigScriptsPhase | |
| Running phase: configurePhase | |
| fixing cmake files... |
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
| extern crate reqwest; | |
| extern crate tokio; | |
| use std::env::args; | |
| use std::fs::read_to_string; | |
| const URL: &str = "https://api.todoist.com/sync/v8/quick/add"; | |
| #[tokio::main] | |
| async fn main() -> Result<(), Box<dyn std::error::Error>> { |
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
| #! /usr/bin/env python | |
| # -*- coding: utf-8 -*- | |
| # vim:fenc=utf-8 | |
| # | |
| # Copyright © 2019 g <g@host> | |
| # | |
| # Distributed under terms of the MIT license. | |
| # 12 - 1 | |
| dict = {'A': 1, 'B': 2, 'D': 1, 'O': 1, 'P': 1, 'Q': 1, 'R': 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
| #! /usr/bin/env python | |
| # -*- coding: utf-8 -*- | |
| # vim:fenc=utf-8 | |
| # | |
| # Copyright © 2019 g <g@host> | |
| # | |
| # Distributed under terms of the MIT license. | |
| # 11 - 1 | |
| n, m = map(int, input().split()) |
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
| #! /usr/bin/env python | |
| # -*- coding: utf-8 -*- | |
| # vim:fenc=utf-8 | |
| # | |
| # Copyright © 2019 g <g@ABCL> | |
| # | |
| # Distributed under terms of the MIT license. | |
| # 10 - 1 | |
| print('YES' if __import__('re').search('[^\w\s]', input()) else 'NO', end='') |
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
| #! /usr/bin/env python | |
| # -*- coding: utf-8 -*- | |
| # vim:fenc=utf-8 | |
| # | |
| # Copyright © 2019 g <g@ABCL> | |
| # | |
| # Distributed under terms of the MIT license. | |
| # 9 - 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
| #! /usr/bin/env python | |
| # -*- coding: utf-8 -*- | |
| # vim:fenc=utf-8 | |
| # | |
| # Copyright © 2019 g <g@ABCL> | |
| # | |
| # Distributed under terms of the MIT license. | |
| # 8 - 1 | |
| from itertools import * |
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
| #! /usr/bin/env python | |
| # -*- coding: utf-8 -*- | |
| # vim:fenc=utf-8 | |
| # | |
| # Copyright © 2019 g <g@ABCL> | |
| # | |
| # Distributed under terms of the MIT license. | |
| # 7 - 1 | |
| m = [[int(x) for x in input().split()] for i in range(int(input()))] |
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
| #! /usr/bin/env python | |
| # -*- coding: utf-8 -*- | |
| # vim:fenc=utf-8 | |
| # | |
| # Copyright © 2019 g <g@ABCL> | |
| # | |
| # Distributed under terms of the MIT license. | |
| # 6 - 1 | |
| _ = input() |
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
| #! /usr/bin/env python | |
| # -*- coding: utf-8 -*- | |
| # vim:fenc=utf-8 | |
| # | |
| # Copyright © 2019 g <g@ABCL> | |
| # | |
| # Distributed under terms of the MIT license. | |
| # 4 - 1 | |
| from functools import reduce |
NewerOlder