このサイトはJavaScriptを使用しています
ホーム
エクスプローラー
Imprint
ヘルプ
登録
サインイン
TheMultiplexer
/
Betriebssysteme
ウォッチ
1
スター
0
フォーク
0
コード
課題
0
プルリクエスト
0
リリース
0
Wiki
アクティビティ
説明なし
選択できるのは25トピックまでです。
トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
52
コミット
12
ブランチ
ツリー:
e7e8932726
hw0
hw1
hw10
hw2
hw3
hw4
hw5
hw6
hw7
hw8
hw9
master
ブランチ
タグ
${ item.name }
ブランチ
${ searchTerm }
を作成
'e7e8932726' から
${ noResults }
Betriebssysteme
/
hw1
/
task1
/
src
/
lib.rs
lib.rs
101B
履歴
Raw
1
2
3
pub fn is_leap_year(year: i32) -> bool {
(year % 4 == 0 && year % 100 != 0) || year % 400 == 0
}