Skip to content

Commit 0eef417

Browse files
committed
fix: fix code block language tag
1 parent 8a35c5b commit 0eef417

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

solution/1400-1499/1414.Find the Minimum Number of Fibonacci Numbers Whose Sum Is K/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ function findMinFibonacciNumbers(k: number): number {
9999

100100
### **Rust**
101101

102-
```rs
102+
```rust
103103
const FIB: [i32; 45] = [
104104
1836311903, 1134903170, 701408733, 433494437, 267914296, 165580141, 102334155, 63245986,
105105
39088169, 24157817, 14930352, 9227465, 5702887, 3524578, 2178309, 1346269, 832040, 514229,

solution/1400-1499/1414.Find the Minimum Number of Fibonacci Numbers Whose Sum Is K/README_EN.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ function findMinFibonacciNumbers(k: number): number {
9090

9191
### **Rust**
9292

93-
```rs
93+
```rust
9494
const FIB: [i32; 45] = [
9595
1836311903, 1134903170, 701408733, 433494437, 267914296, 165580141, 102334155, 63245986,
9696
39088169, 24157817, 14930352, 9227465, 5702887, 3524578, 2178309, 1346269, 832040, 514229,

0 commit comments

Comments
 (0)