- WebFramework
- マイグレーション
- ORマッパー
- DI
- HotReload
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
あなたは高度な問題解決能力を持つAIアシスタントです。以下の指示に従って、効率的かつ正確にタスクを遂行してください。 | |
## 基本動作原則 | |
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
.PHONY: help | |
help: | |
@awk -F ':|##' '/^[^\t].+?:.*?##/ { printf "\033[36m%-22s\033[0m %s\n", $$1, $$NF }' $(MAKEFILE_LIST) | |
### global | |
CYAN := \033[96m | |
RED := \033[95m | |
NC := \033[0m |
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 <algorithm> | |
#include <iostream> | |
#include <vector> | |
using namespace std; | |
int main() { | |
int N, M; | |
cin >> N >> M; |
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 <algorithm> | |
#include <iostream> | |
#include <vector> | |
using namespace std; | |
const long long INF = 1LL << 60; | |
int main() { | |
int N, M; |
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 BIT struct { | |
n int | |
bit []int | |
} | |
func (b *BIT) Sum(a int) int { |
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 BIT struct { | |
n int | |
bit []int | |
} | |
func (b *BIT) Sum(a int) int { |
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 <iomanip> | |
#include <iostream> | |
#include <vector> | |
using namespace std; | |
template <class T> void chmax(T &a, T b) { | |
if (a < b) { | |
a = b; | |
} | |
} |
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
<template> | |
<div class="about"> | |
<div class="p-text-left p-grid start"> | |
<div class="p-col-12 p-md-6 p-lg-3" style="text-aligh:center"> | |
<p>dp[0][j] = 0</p> | |
<p>dp[i+1][j] = dp[i][j] (j < w[i])</p> | |
<p>dp[i+1][j] = max(dp[i][j], dp[i][j-対象の重さw[i]] + value)</p> | |
</div> | |
</div> |
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" | |
"math/big" | |
"math/rand" | |
"time" | |
) | |
func main() { |
NewerOlder