Skip to content

Instantly share code, notes, and snippets.

@tail-call
Created December 6, 2024 04:17
Show Gist options
  • Save tail-call/d9c5110529dd94459a902d190b382814 to your computer and use it in GitHub Desktop.
Save tail-call/d9c5110529dd94459a902d190b382814 to your computer and use it in GitHub Desktop.
#lang racket
(define/contract (reverse x)
(-> exact-integer? exact-integer?)
(cond ((= x 0) 0)
((< x 0) (- (reverse (- x))))
(else (let ((reduced-x (floor (/ x 10)))
(digit (remainder (floor x) 10))
(z (expt 10 (round (log x 10)))))
(print (list x reduced-x digit z))
(+ (inexact->exact (* digit z)) (reverse reduced-x))))))
(reverse 123)
(reverse -123)
(reverse 120)
(reverse 900000)
'(12 3 100.0)'(1 2 10.0)'(0 1 1)321
'(12 3 100.0)'(1 2 10.0)'(0 1 1)-321
'(12 0 100.0)'(1 2 10.0)'(0 1 1)21
'(90000 0 1000000.0)'(9000 0 100000.0)'(900 0 10000.0)'(90 0 1000.0)'(9 0 100.0)'(0 9 10.0)90
@tail-call
Copy link
Author

Attempt at a leetcode, failed attempt using log

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment