Select Git revision
Y_test_tile_8_subregion.npy
-
Gabriele Cavallaro authoredGabriele Cavallaro authored
calculator.py NaN GiB
# SPDX-FileCopyrightText: 2024 Earth System Data Exploration (ESDE), Jülich Supercomputing Center (JSC)
#
# SPDX-License-Identifier: MIT
"""
Simple example methods used in git training.
"""
__author__ = "Michael Langguth"
__email__ = "m.langguth@fz-juelich.de"
__date__ = "2024-07-22"
__update__ = "2024-07-24"
from typing import Union
def add(a: Union[int, float], b: Union[int, float]) -> Union[int, float]:
"""
Add numbers and return sum.
:param a: first number
:param b: second number
:return: sum of a and b
"""
return [...]
def multiply(a: Union[int, float], b: Union[int, float]) -> Union[int, float]:
"""
Multiply numbers and return product.
:param a: first number
:param b: second number
:return: product of a and b
"""
return [...]