Tämä sivusto toimii paremmin JavaScriptillä.
Etusivu
Tutki
Imprint
Apua
Rekisteröidy
Kirjaudu sisään
TheMultiplexer
/
Betriebssysteme
Tarkkaile
1
Äänestä
0
Fork
0
Koodi
Ongelmat
0
Pull-pyynnöt
0
Julkaisut
0
Wiki
Activity
Ei kuvausta
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52
Commitit
12
Branchit
Puu:
e7e8932726
hw0
hw1
hw10
hw2
hw3
hw4
hw5
hw6
hw7
hw8
hw9
master
Branchit
Tagit
${ item.name }
Create branch
${ searchTerm }
from 'e7e8932726'
${ noResults }
Betriebssysteme
/
hw1
/
task1
/
src
/
lib.rs
lib.rs
101B
Historia
Raaka
1
2
3
pub fn is_leap_year(year: i32) -> bool {
(year % 4 == 0 && year % 100 != 0) || year % 400 == 0
}