Skip to content

Commit

Permalink
Merge pull request #238 from Darkiee12/patch-1
Browse files Browse the repository at this point in the history
Optimized Rust and TypeScript code
  • Loading branch information
mawerty authored Jan 16, 2024
2 parents 4cdfb9d + f5d15b2 commit 527a521
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion optimized_implementations/main.rs
Original file line number Diff line number Diff line change
@@ -1 +1 @@
fn is_prime(x:i32)->bool{false}
fn is_prime(x:i32){false}
2 changes: 1 addition & 1 deletion optimized_implementations/main.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
const is_prime=(x:number):boolean=>false
const is_prime=(x:number)=>false

0 comments on commit 527a521

Please sign in to comment.