Updated exercise

This commit is contained in:
Andrea Bianchi
2026-03-09 09:24:40 +09:00
parent 5d61d62a0e
commit 0a5ccf9c68
2 changed files with 2 additions and 1 deletions

1
.gitignore vendored
View File

@@ -3,3 +3,4 @@ node_modules
**/.DS_Store
todo/**
_*.js
solution-*.js

View File

@@ -1,10 +1,10 @@
// Types and conversions
// !@ts-check
// Ex 1 (implicit convertion)
// Compute the time in seconds
function timeInSeconds(hours, mins, secs) {
// placeholder
// return (hours * 60 + mins) * 60 + secs;
}
console.log('Ex 1');