lab_work3

This commit is contained in:
2025-05-05 17:26:53 +04:00
parent 307c2b89d0
commit edd470aa16
8988 changed files with 857846 additions and 609 deletions

View File

@@ -0,0 +1,5 @@
// @flow
export default function getAltLen(len: 'width' | 'height'): 'width' | 'height' {
return len === 'width' ? 'height' : 'width';
}