All public logs

Jump to navigation Jump to search

Combined display of all available logs of Omnia. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
  • 21:32, 13 May 2025 Kenneth talk contribs created page Python/Problems (Created page with "== Roman Numeral to Integer == My favorite solution I found online: <ref>https://leetcode.com/problems/roman-to-integer/solutions/264743/clean-python-beats-99-78/</ref> <pre> class Solution: def romanToInt(self, s: str) -> int: translations = { "I": 1, "V": 5, "X": 10, "L": 50, "C": 100, "D": 500, "M": 1000 } number = 0 s = s.replace("IV", "IIII").repl...")