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
| INF = 10**9+7 | |
| def LowerBound(nums, key): | |
| lo = 0 | |
| hi = len(nums) - 1 | |
| ans = -1 | |
| while lo <= hi: | |
| mi = lo + (hi - lo) // 2 | |
| if nums[mi] < key: |
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
| from icecream import ic # type: ignore # pip install icecream | |
| def GetSum(n): | |
| if n == 0: return 0 | |
| return n + GetSum(n - 1) | |
| def GetLength(nums, n): | |
| if n == -1: return 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
| #include <initializer_list> | |
| #include <iostream> | |
| #include <memory> | |
| // -fsanitize=address -stdlib=libc++ -g -O0 -pedantic -fstack-protector -D_GLIBCXX_DEBUG_PEDANTIC -D_GLIBCXX_DEBUG -fsanitize=undefined -Wall -Werror -std=c++20 | |
| template<class T> | |
| struct Node { | |
| T data {}; | |
| std::shared_ptr<Node> prev = {nullptr}; |
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
| package main | |
| import ( | |
| "fmt" | |
| ) | |
| type Node struct { | |
| Data interface{} | |
| Prev *Node | |
| Next *Node |
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
| from typing import Any | |
| from icecream import ic # type: ignore # pip install icecream | |
| class Node: | |
| def __init__(self, data: Any): | |
| self.data: Any = data | |
| self.prev: Node | |
| self.next: Node |
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
| #include <initializer_list> | |
| #include <iostream> | |
| #include <memory> | |
| #include <cassert> | |
| template<class T> | |
| struct Node { | |
| using LPtr = std::weak_ptr<Node>; | |
| using RPtr = std::shared_ptr<Node>; |
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
| from typing import TypeVar, Generic, Optional, Hashable, TypeAlias | |
| from icecream import ic # type: ignore | |
| KeyT = TypeVar("KeyT", bound=Hashable) | |
| ValueT = TypeVar("ValueT") | |
| class Node(Generic[KeyT, ValueT]): | |
| def __init__(self, key: Optional[KeyT], value: Optional[ValueT]): |
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
| package main | |
| import ( | |
| "fmt" | |
| ) | |
| type Node[KeyT comparable, ValueT any] struct { | |
| key KeyT | |
| value ValueT | |
| prev *Node[KeyT, ValueT] |
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
| #include <iostream> | |
| #include <unordered_map> | |
| #include <list> | |
| #include <optional> | |
| #include <cassert> | |
| using namespace std; | |
| template <class T> | |
| concept Hashable = requires(T param) { std::hash<T>()(param); }; |
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
| from typing import TypeAlias, Tuple, Hashable, TypeVar, Generic | |
| FrequencyT: TypeAlias = int | |
| ValueT = TypeVar("ValueT") | |
| ValueFrequencyT: TypeAlias = tuple[ValueT, FrequencyT] | |
| KeyT = TypeVar("KeyT", bound=Hashable) | |
| KeysT: TypeAlias = set[KeyT] | |