m323/Sources/LeetCode/main.swift
2026-06-08 10:34:49 +02:00

13 lines
286 B
Swift

//
// main.swift
// m323
//
// Created by cediackermann on 18.05.2026.
//
let code = LeetCode()
// print(code.hammingWeight(2_147_483_645))
// print(code.singleNumber([4, 1, 2, 1, 2]))
// print(code.containsDuplicate([1, 2, 3, 4]))
print(code.productExceptSelf([-1, 1, 0, -3, 3]))