(for Windows Workstations & Servers)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public int TrailingZerosInNFactorial(int n) | |
{ | |
var factorialCalulation = calculateFactorial(n); | |
var trailingZerosInFactorial = getTrailingZeros(factorialCalculation); | |
return trailingZerosInFactorial; | |
} | |
private int calculateFactorial(int n) | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
iwconfig=/sbin/iwconfig | |
names=() | |
vals=() | |
names+=('timestamp') | |
vals+=(`date -u +"%Y-%m-%dT%H:%M:%SZ"`) |
Mooltipass Mini BLE (delivered September 23rd 2022)
mooltipass user guide: https://raw.githubusercontent.com/mooltipass/minible/master/MooltipassMiniBLEUserManual.pdf
moolticute repo: